问答详情
源自:2-6 [SQL Server基础]两个技巧

想问一下排除法怎么查询

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

提问者:慕数据9165516 2018-07-22 15:40

个回答

  • 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)