主頁 > 知識(shí)庫 > 數(shù)據(jù)庫實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)

數(shù)據(jù)庫實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)

熱門標(biāo)簽:地圖簡圖標(biāo)注 東莞外呼企業(yè)管理系統(tǒng) 清遠(yuǎn)申請(qǐng)400電話 沈陽智能外呼系統(tǒng)供應(yīng)商 谷歌地圖標(biāo)注位置圖解 手機(jī)外呼系統(tǒng)違法嗎 桂林云電銷機(jī)器人收費(fèi) 南通電銷外呼系統(tǒng)哪家強(qiáng) 如何選擇優(yōu)質(zhì)的外呼系統(tǒng)

這篇文章通過sql示例代碼給大家介紹了mysql數(shù)據(jù)庫如何實(shí)現(xiàn)行列轉(zhuǎn)換,下面話不多說,直接來看示例代碼吧。

原表:

表名 :user
----------------------------------------
name    | course  | grade
----------------------------------------
zhangsan  | Java   | 70
----------------------------------------
zhangsan  | C++   | 80
----------------------------------------
lisi    | java   | 90
----------------------------------------
lisi    | C#    | 60
----------------------------------------

用一條 SQL 語句得到如下形式:

----------------------------------------
name   | java | C++ | C#
----------------------------------------
zhangsan | 70  | 80  | null
----------------------------------------
lisi   | 90  | null | 60
----------------------------------------

方案一

select  name,
sum(case when course='java' then grade end) as java,
sum(case when course='C++' then grade end) as C++,
sum(case when course='C#' then grade end) as C#
from test group by name

方案二

select distinct c.`name` AS name,
(select grade from test where name = c.`name` and course = 'java' )as java,
(select grade from test where name = c.`name` and course = 'C++' )as C++,
(select grade from test where name = c.`name` and course = 'C#' )as C#
from test c

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能有一定的幫助,如果有疑問大家可以留言交流。

您可能感興趣的文章:
  • mysql 行列動(dòng)態(tài)轉(zhuǎn)換的實(shí)現(xiàn)(列聯(lián)表,交叉表)
  • mysql 行列轉(zhuǎn)換的示例代碼

標(biāo)簽:湖州 天津 常德 臨沂 重慶 成都 內(nèi)蒙古 貴州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《數(shù)據(jù)庫實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)》,本文關(guān)鍵詞  數(shù)據(jù)庫,實(shí)現(xiàn),行列,轉(zhuǎn)換,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《數(shù)據(jù)庫實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)》相關(guān)的同類信息!
  • 本頁收集關(guān)于數(shù)據(jù)庫實(shí)現(xiàn)行列轉(zhuǎn)換(mysql示例)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章