Re: [SQL ] 請問選取最大值的方法
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)
推
11/21 16:29, , 1F
11/21 16:29, 1F
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 4 之 4 篇):
Database 近期熱門文章
PTT數位生活區 即時熱門文章