作者在 2008-01-07 23:13:40 发布以下内容
create proc pt_排序
as
select 商品编号,count(商品编号) '数量' INTO AA from 进货表 group by 商品编号
SELECT 商品编号,数量 from AA group by 商品编号,数量 order by max(数量) desc
exec pt_排序
create proc pt_排序
as
select 商品编号,count(商品编号) '数量' INTO AA from 进货表 group by 商品编号
SELECT 商品编号,数量 from AA group by 商品编号,数量 order by max(数量) desc
exec pt_排序