I'm not a SQL expert, but I'm able to write simple query but I have a problem with a query like:
SELECT field
FROM TableA
WHERE field NOT IN (SELECT field FROM TableB)
I have 2 table with the same field
name, I'm sure there at least a record in TableA
that is not in TableB
but MySql returns 0 results.
The 2 field
are Varchar64 , utf8_general_ci coded and contains values like '279960881351'
.
I'm using PhpMyAdmin to run the query and the DB is hosted.
I wonder if there is something I do not know about MySql or PhpMyAdmin.