已知以下数据表,根据要求写出正确的SQL语句2
发布网友
发布时间:2023-11-09 03:19
我来回答
共1个回答
热心网友
时间:2024-11-26 02:55
1.
select top 10 percent * from 订单
2.
select 职员号,count(订单号),avg(金额) from 订单 group by 职员号 having count(订单号)>3 and avg(金额)>200
3.
select a.订单号,b.客户名,a.签订日期 from 订单 a inner join 客户 b on a.客户号=b.客户号 where convert(char(6),a.签订日期,112)>'20050101'
4.
select 职员号,姓名 from 职员 where 职员号 not in (select 职员号 from 订单)
5.
delete from 订单 where 客户号='1001'