某超市数据库中有以下信息,根据题目要求,写出相应的sql语句。
发布网友
发布时间:2022-12-02 06:53
我来回答
共1个回答
热心网友
时间:2023-11-09 03:19
--1
select 供货商,种类数量=count(商品编码)
from 商品
group by 供货商
having count(商品编码)>10
--2
select 销售总量=sum(数量)
from 销售记录 a join 商品 b on a.商品编码=b.商品编码
where 名称='中华健齿白' and 时间 between '20140101' and '20140102 '
--3
insert into 商品
values('tx001','文件夹',null,'浙江',null,500,8,16.8)
--4
update 商品
set 现存货量=现存货量-1
where 商品编码='tx001'