當前位置:首頁 » 編程語言 » sql轉行合法嗎
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sql轉行合法嗎

發布時間: 2023-07-24 15:48:20

Ⅰ oracle的sql語句列轉行

不同人的uuid是不一樣的嗎?


select
(selectzfromtabnameaawherezmc='姓名'andaa.uuid=a.uuid)姓名,
(selectzfromtabnameaawherezmc='年齡'andaa.uuid=a.uuid)年齡,
(selectzfromtabnameaawherezmc='英文名稱'andaa.uuid=a.uuid)英文名稱,
(selectzfromtabnameaawherezmc='性別'andaa.uuid=a.uuid)性別,
(selectzfromtabnameaawherezmc='入職日期'andaa.uuid=a.uuid)入職日期,
(selectzfromtabnameaawherezmc='個人信息'andaa.uuid=a.uuid)個人信息
from(selectdistinctuuidfromtabname)a

Ⅱ SQL語句 列轉行

-- ========================= PIVOT 行列轉置 ===========================
-- 1、【行列轉置PIVOT】
declare @Score table(StuNo varchar(10), StuName varchar(50), CourseName varchar(50), Score int)
insert into @Score
select '1', 'Tom', 'Math', 80 union all
select '1', 'Tom', 'English', 82 union all
select '1', 'Tom', 'Geography', 84 union all
select '2', 'Jone', 'Math', 79 union all
select '2', 'Jone', 'English', 88 union all
select '2', 'Jone', 'Geography',86
select * from @Score

SELECT StuNo, StuName, Math, English, [Geography]
FROM @Score PIVOT (MAX(Score) FOR CourseName in (Math, English, [Geography]) ) AS ScoreList
ORDER BY StuNo

-- 2、【列行轉置UNPIVOT】
declare @ScoreList table(StuNo varchar(10), StuName varchar(50), Math int, English int, [Geography] int)
insert into @ScoreList
select '1', 'Tom', 80, 82, 84 union all
select '2', 'Jone', 79, 88, 86
select * from @ScoreList

SELECT StuNo, StuName, CourseName, Score
FROM @ScoreList UNPIVOT (Score FOR CourseName in (Math, English, [Geography]) ) AS ScorePvtTable
ORDER BY StuNo

Ⅲ 請教sql 列轉行問題

select cOrder,cCode,

cl1=isnull((select sum(cl) from tb a where day(cdate)=1),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

cl2=isnull((select sum(cl) from tb a where day(cdate)=2),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

cl3=isnull((select sum(cl) from tb a where day(cdate)=3),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

cl4=isnull((select sum(cl) from tb a where day(cdate)=4),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

cl5=isnull((select sum(cl) from tb a where day(cdate)=5),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

cl6=isnull((select sum(cl) from tb a where day(cdate)=6),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

/*復制30行或31行,然後更改「日」Cxx和day(cdate)=x兩個位置

.

.

.

*/

cl30=isnull((select sum(cl) from tb a where day(cdate)=30),0) and tb.corder=a.corder and tb.ccode=a.ccode),0),

合計=isnull((select sum(cl) from tb a where month(cdate)=6 and year(cdate)=2013 and tb.corder=a.corder and tb.ccode=a.ccode),0)

from tb where month(cdate)=6 and year(cdate)=2013


Ⅳ sql 列轉行

先建一張轉換後的表
create table changed
(
id number,
key varchar2(10),
val varchar2(10)
)
然後執行下面的插入語句
insert all
into changed(id,key,val) values(id,'a',a)
into changed(id,key,val) values(id,'b',b)
into changed(id,key,val) values(id,'c',c)
into changed(id,key,val) values(id,'d',d)
into changed(id,key,val) values(id,'e',e)
select id,a,b,c,d,e from change;
如果需要繼續添加,就模仿上面的格式寫好了,最後別忘記commit;

Ⅳ 死磕:SQL行轉列匯總(全網最全最詳細)

閱讀目錄

PIVOT 用於將列值旋轉為列名(即行轉列),在 SQL Server 2000可以用聚合函數配合CASE語句實現

PIVOT 的一般語法是:PIVOT(聚合函數(列) FOR 列 in (…) )AS P

注意:PIVOT、UNPIVOT是SQL Server 2005 的語法,使用需修改資料庫兼容級別(在資料庫屬性->選項->兼容級別改為 90 )

SQL2008 中可以直接使用

完整語法:

View Code

UNPIVOT 用於將列明轉為列值(即列轉行),在SQL Server 2000可以用UNION來實現

姓名 課程 分數

---------- ---------- -----------

張三 語文 74

張三 數學 83

張三 物理 93

李四 語文 74

李四 數學 84

李四 物理 94

姓名 語文 數學 物理

---------- ----------- ----------- -----------

李四 74 84 94

張三 74 83 93

姓名 語文 數學 物理 總分 平均分

---------- ----------- ----------- ----------- -----------

李四 74 84 94 252 84.00

張三 74 83 93 250 83.33

姓名 語文 數學 物理

---------- ----------- ----------- -----------

張三 74 83 93

李四 74 84 94

姓名 課程 分數

---------- ---- -----------

李四 語文 74

李四 數學 84

李四 物理 94

張三 語文 74

張三 數學 83

張三 物理 93

最後給大家分享Spring系列的學習筆記和面試題,包含spring面試題、spring cloud面試題、spring boot面試題、spring教程筆記、spring boot教程筆記、最新阿里巴巴開發手冊(63頁PDF總結)、2022年Java面試手冊。一共整理了1184頁PDF文檔。私信博主(777)領取,祝大家更上一層樓!!!

原文作者:王思明

原文出處:http://www.cnblogs.com/maanshancss/

Ⅵ sql語句列轉行

我整理的行轉列的問題:

--創建tb表
createtabletb(姓名varchar(10),課程varchar(10),分數int)
insertintotbvalues('張三','語文',74)
insertintotbvalues('張三','數學',83)
insertintotbvalues('張三','物理',93)
insertintotbvalues('李四','語文',74)
insertintotbvalues('李四','數學',84)
insertintotbvalues('李四','物理',94)
go

select*Fromtb

--SQLSERVER2000靜態行轉列
select姓名as姓名,
max(case課程when'語文'then分數elsenullend)語文,
max(case課程when'數學'then分數elsenullend)數學,
max(case課程when'物理'then分數elsenullend)物理
fromtb
groupby姓名

--SQLSERVER2000動態SQL,指課程不止語文、數學、物理這三門課程。(以下同)
declare@sqlvarchar(8000)
set@sql='select姓名'
select@sql=@sql+',max(case課程when'''+課程+'''then分數else0end)['+課程+']'
from(selectdistinct課程fromtb)asa
set@sql=@sql+'fromtbgroupby姓名'
exec(@sql)

--SQLSERVER2005靜態SQL。
select*from(select*fromtb)apivot(max(分數)for課程in(語文,數學,物理))b

--SQLSERVER2005動態SQL。
declare@sqlvarchar(8000)
select@sql=isnull(@sql+'],[','')+課程fromtbgroupby課程
set@sql='['+@sql+']'
exec('select*from(select*fromtb)apivot(max(分數)for課程in('+@sql+'))b')

希望對你的學習有幫助。