原始數(shù)據(jù)和目標(biāo)數(shù)據(jù)
實(shí)現(xiàn)SQL語句(最大)
select
shop,
month,
greatest(dz,fz,sp) as max
from
tablename;
實(shí)現(xiàn)SQL語句(最小)
select
shop,
month,
least (dz,fz,sp) as min
from
tablename;
補(bǔ)充:SQL Server獲取一行中多列的最大值三種方法
有些時(shí)候我們需要從一個(gè)表的多個(gè)列中獲取一個(gè)最大值(這些列的數(shù)據(jù)類型相同,并且是每一行記錄都要獲取一個(gè)最大值)。下面講了三種方法,我們一起看下。
首先我們創(chuàng)建一個(gè)表,并在表中插入需要用到的記錄,如下:
create table Demo(
Guid varchar(50) not null default newid() primary key,
Date1 datetime null,
Date2 datetime null,
Date3 datetime null
)
然后我們在表中插入測試數(shù)據(jù)
insert into Demo(Date1,Date2,Date3) values
('2016-9-5','2016-8-6','2016-10-9'),
('2015-5-6','2015-8-6','2015-6-3'),
('2016-10-6','2015-6-6','2016-9-6')
select * from Demo
我們需要獲取上面每一行記錄的三個(gè)日期列的最大值。
方法一(效率高):
select Guid,(select Max(NewDate) from (values (Date1),(Date2),(Date3)) as #temp(NewDate)) as MaxDate from Demo
方法二(效率高):
select Guid, max(NewDate) as MaxDate from Demo unpivot (NewDate for DateVal in (Date1,Date2,Date3)) as u group by Guid
方法三(效率低,不建議用):
select Guid, (select max(NewDate) as MaxDate from (select Demo.Date1 as NewDate union select Demo.Date2 union select Demo.Date3)ud) MaxDate from Demo
第一種方法使用values子句,將每行數(shù)據(jù)構(gòu)造為只有一個(gè)字段的表,以后求最大值,非常巧妙;
第二種方法使用行轉(zhuǎn)列經(jīng)常用的UNPIVOT 關(guān)鍵字進(jìn)行轉(zhuǎn)換再顯示;
第三種方法跟第一種方法差不多,但是使用union將三個(gè)UpdateByAppDate字段合并為只有一個(gè)字段的結(jié)果集然后求最大值。
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- SQL設(shè)置SQL Server最大連接數(shù)及查詢語句
- Mysql獲取id最大值、表的記錄總數(shù)等相關(guān)問題的方法匯總
- mysql獲取分組后每組的最大值實(shí)例詳解