课程
/数据库
/SQL Server
/SQL Server基础--T-SQL语句
比如查某个部门购买的哪些商品是所有部门都没有买过的,这个需要嵌套select吗?
2018-07-22
源自:SQL Server基础--T-SQL语句 2-6
正在回答
select distinct(item) from table where item not in (select distinct(item) from table where bumen<>'mouge') and bumen='mouge' -----------------不知道对不对......等待实践检验
select * from something where name in (select name from something group by name having COUNT(*)>1)
select
*
from
where
name
in
(
something
group
by
having
COUNT
(*)>1)
冰枫565
举报
SQL Server基础教程,主要讲解TSQL的基本查询语句和基本用法
1 回答查询的时候 排序 问题是先查后排 还是先排后查
1 回答老师,我想问一下这个ER图是怎么实现的
1 回答额。。只有查询么
1 回答请问一个字段按倒序排列另外一个按照正序排列一个语句怎么写?
1 回答查询语句的问题