发布网友 发布时间:2022-04-11 02:44
共4个回答
热心网友 时间:2022-04-11 04:13
SELECT追答你需要的不就是订单总数么,得到的结果是王而1个,李四2个,张三3个。查询后就是王而的信息了
热心网友 时间:2022-04-11 05:31
试一下热心网友 时间:2022-04-11 07:06
select * from 客户信息表 where 客户编号 in (select 客户编号 from 订单表 group by 客户编号 having count(*)<(select count(*) from 订单表 where 客户编号=(select 客户编号 from 客户信息表 where 客户姓名='李四')))热心网友 时间:2022-04-11 08:57
select 客户编号 from 订单表 group by 客户编号 having count() >(select count(*) from 订单表 where 客户编号=( select 客户编号 from 客户信息表 where 客户姓名="李四 "))