1
Good morning! All right? On the website I’m working on, it displays a list of countries that come from the database. However, there was a requirement that the countries sanctioned by OFAC.
It calls countries with the following SQL commands:
var sql = @"
SELECT
id, nome_pt AS nome
FROM loc_pais
ORDER BY nome_pt
";
My question is ; "I can put a filter to not display those countries that are sanctioned, or would it be better to exclude them from the table?
vlw man, I’m gonna do this scheme!
– MSHijo