作者flakchen (flak)
看板Database
标题Re: [SQL ] 请问选取最大值的方法
时间Mon Nov 20 19:34:06 2006
SQL是没有SELECT 「栏位名称」这种事情的(有哪种资料库有吗?)
所以要SELECT出的结果一定得是资料表其中一个栏位
如果原始资料表就是这样设计,除了原PO使用的衍生资料表之外,
SQL2000以上版本可以宣告资料表变数来暂时储存查询需要的资料结构
Declare @T table(id int,type varchar(255),amount int)
Insert into @T(id,type,amount)
select id , 'meal' as type, meal as amount from consume
union all
select id , 'travel' as type, travel as amount from consume
union all
select id , 'clothes' as type, clothes as amount from consume
--Union 也是会影响效能,非必要请用Union All即可
Select id,type,amount
From @T T
Where T.amount>=(select max(amount) from @T T1
where T1.ID=T.ID)
资料表变数的生命周期只存在於工作阶段,所以以上SQL查询可以反覆下
但就是要注意资料表变数的栏位资料长度要对,不要容纳不了原始资料
而造成错误就是了,麻烦了点,但效能比较好(也比用Select * into #T
的暂存资料表要好)
※ 引述《webberhan (练习多"多益"善)》之铭言:
: select ttt.id, ttt.type, tt.amount
: from
: (
: select id , 'meal' as type, meal as amount from consume
: union
: select id , 'travel' as type, travel as amount from consume
: union
: select id , 'clothes' as type, clothes as amount from consume
: ) ttt
: inner join
: (
: select id , max(amount) amount
: from
: (
: select id , 'meal' as type, meal as amount from consume
: union
: select id , 'travel' as type, travel as amount from consume
: union
: select id , 'clothes' as type, clothes as amount from consume
: ) t
: group by id
: ) tt
: on tt.id=ttt.id and tt.amount=ttt.amount
: --这个表格设计的很烂,如果多一种消费项目就要多一个栏位
: --设计好一点就不需要UNION了
: ※ 引述《cmccyc (悲惨的生活)》之铭言:
: : (针对 SQL 语言的问题,用这个标题。请用 Ctrl+Y 砍掉这行)
: : 资料库名称:teradata或 mssql
: : 资料库版本:
: : 内容/问题描述:
: : 我有一个消费table
: : ID 餐费 旅行 服饰
: : ---------------------------------
: : a 500 100 200
: : b 100 150 300
: : c 100 700 300
: : 我想要针对每个人选出主要消费的项目
: : ID 消费项目
: : ----------------
: : a 餐费
: : b 服饰
: : c 旅行
: : 请问要如何写呢
: : 谢谢
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 210.64.110.97
※ 编辑: flakchen 来自: 210.64.110.97 (11/20 19:36)
1F:推 webberhan:感谢纠正 11/21 16:29