回 帖 发 新 帖 刷新版面

主题:请教一条简单的SQL语句写法

有两个数据表A为ID,NAME,AGE,B为ID,CLASS,查找A表中所有未编入CLASS的NAME的SQL语句怎么写?谢谢了先

回复列表 (共4个回复)

沙发

select NAME
from A
where class is null

板凳


不是这样的,Class是在另外一张表里

3 楼

解出来了,应该是select * from a where ID not in(select ID from B)

4 楼

select a.*,b.*
from a,b
where a.id = b.id(+)
and b.id is not null

是不是这个意思

我来回复

您尚未登录,请登录后再回复。点此登录或注册