主题:请教一条简单的SQL语句写法
wj2051
[专家分:50] 发布于 2006-01-22 17:38:00
有两个数据表A为ID,NAME,AGE,B为ID,CLASS,查找A表中所有未编入CLASS的NAME的SQL语句怎么写?谢谢了先
回复列表 (共4个回复)
沙发
vim [专家分:1170] 发布于 2006-01-22 20:27:00
select NAME
from A
where class is null
板凳
wj2051 [专家分:50] 发布于 2006-01-22 20:40:00
不是这样的,Class是在另外一张表里
3 楼
wj2051 [专家分:50] 发布于 2006-01-22 20:58:00
解出来了,应该是select * from a where ID not in(select ID from B)
4 楼
methuselah [专家分:6840] 发布于 2006-01-23 09:20:00
select a.*,b.*
from a,b
where a.id = b.id(+)
and b.id is not null
是不是这个意思
我来回复