hope this will help
select a.* , b.*
from table1 a, table2 b
where a.Fcode = b.FCode
------------------------------------------------------------
select * from Table1
where FCode in (select FCode from Table2)...
User Profile
Collapse
Leave a comment: