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

SQL,题目太短没法描述~T T

2013-12-28 
SQL,标题太短没法描述~~T TA,B两个表字段不同,但是B表中含有一个connid字段对应与A表中的id,怎么查出在A中

SQL,标题太短没法描述~~T T
A,B两个表字段不同,但是B表中含有一个connid字段对应与A表中的id,怎么查出在A中并且id没有在表B中的记录....好乱~~~
[解决办法]
select  id  from  a  
where not exists(select  1 from  b
where  b.id=a.id)
[解决办法]
真替你捉急 select * from a where not exists (select 1 from b where b.connid = a.id)
[解决办法]


 select a.* from A a where not exists 
 (select 1 from B b where b.connid = a.id)

[解决办法]
引用:
Quote: 引用:

真替你捉急 select * from a where not exists (select 1 from b where b.connid = a.id)
只用过最简单的HQL嘿,这里的1指什么,我用*也行
恩 都是可以的

热点排行