select distinct(id) from product
这个是从结果集中删除重复行,,,,,
是重复的全部删了,,还是只留了一行把其它与它相重复的都删了.????????????????????//
正确答案是:只留了一行。
select * from acc where id not in (select disctinct id from acc)
应该是返回空
我试了一下就是空,为什么呢?
select disctinct id from acc 会查出所有的id,再not in 当然一个都出不来啊
阅读(1792) | 评论(0) | 转发(0) |