首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

一条sql 话语

2013-12-28 
一条sql 语句table1 factory1id name1table2 factory2id name2找出 2表不重复记录[解决办法]select * from

一条sql 语句
table1 factory1

id name1

table2 factory2

id name2


找出 2表不重复记录



[解决办法]

select * from factory2 A where not exists(select * from factory1 B where A.id =B.id and A.name2=B.name1)

热点排行