select pid from table where pid is not (select top 10 pid from table1)
上面的正确语法是什么?
发布于 2010-11-14 21:44:00
select pid from table where pid not in (select top 10 pid from table1)
发布于 2010-11-14 21:44:25
not in
,而不是is not
https://stackoverflow.com/questions/4177713
复制相似问题