hi all
I'm using two tables called t1,t2..i need to display the id's that are there in the 1st table but not in the second table..i hope the minus function will give the results..the query i wrote is
select t1.id from t1
minus
select t2.id from t2
is this query correct...its not working..please help
thank you
I'm using two tables called t1,t2..i need to display the id's that are there in the 1st table but not in the second table..i hope the minus function will give the results..the query i wrote is
select t1.id from t1
minus
select t2.id from t2
is this query correct...its not working..please help
thank you
Comment