T tank37 Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-23 #1 表1 t1 记录是 1, 2, 3 表2 t2 记录是 1, 2, 3, 4, 5 怎样从2个表中找出不同的记录 4,5
Y ysai Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-23 #2 select * from t2 where field1 not in (select field1 from t1);
人 人在昆明 Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-23 #3 笨方法,大体就这个格式,不过记得oracle 中有一个关键字可以写的方便一些。 select * from ( select t1.field1 from t1 where t1.field1 not in ( select t2.field from t2 ) ) union ( )
笨方法,大体就这个格式,不过记得oracle 中有一个关键字可以写的方便一些。 select * from ( select t1.field1 from t1 where t1.field1 not in ( select t2.field from t2 ) ) union ( )