想问一下排除法怎么查询

来源:2-6 [SQL Server基础]两个技巧

慕数据9165516

2018-07-22 15:40

比如查某个部门购买的哪些商品是所有部门都没有买过的,这个需要嵌套select吗?

写回答 关注

2回答

  • pspsps
    2018-09-02 20:17:45

    select distinct(item)  from  table  where  item  not  in  (select  distinct(item)  from  table  where  bumen<>'mouge')   and  bumen='mouge'           -----------------不知道对不对......等待实践检验

  • 冰枫565
    2018-07-24 12:04:31

    select from  something where name in (select name from  something group by name having COUNT(*)>1)

    冰枫565

    这个能查重复的剩下的就是没有重复的_(:3」∠)_

    2018-07-24 12:10:41

    共 1 条回复 >

SQL Server基础--T-SQL语句

SQL Server基础教程,主要讲解TSQL的基本查询语句和基本用法

175197 学习 · 558 问题

查看课程

相似问题