用SQL语句完成以下操作。
发布网友
发布时间:2022-04-13 06:44
我来回答
共2个回答
热心网友
时间:2022-04-13 08:13
select avg(工资) from 职工表
select * from 职工表 where 工资 < avg(工资) and 仓库号 = ""
select count(*) from 职工表 where 工资 > 1220
group by 仓库号
delect from 订购单表 where
热心网友
时间:2022-04-13 09:31
1.select avg(工资) from 职工;
2.select * from 职工 zg1 where 工资 < (select avg(工资) from 职工 zh2 where zg2.仓库号 = zg1.仓库号);
3.select count(1) from 职工 group by 仓库号;
4.delete from 订购单 where 职工号 in (select 职工号 from 职工 where 仓库号 in (select 仓库号 from 仓库 where 城市 = '上海'))