I have the query as below:
SELECT FAccount from T5
where FAccount not in (
select Account from t3)
I know FAccount # 424337466884 in T5 is not in T3, so the query should at least return 424337466884. But this query returns nothing.
Please help. Thanks in advance.