Hi all i am trying to achieve below query to return result from two table based on the condition given.How to put correct query to achive the expected output?
SELECT * FROM bw_tempclientdetails
where companyname like '%fff%'
not in (SELECT * FROM bw_clientallocation where companyname like '%fff%');
use join <–follow the link
Hope it helps. Good Luck.