創建測試表:
DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `year` int(11) DEFAULT NULL, `month` int(11) DEFAULT NULL, `amount` double DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
插入數據:
INSERT INTO `test` VALUES ('1991', '1', '1.1'); INSERT INTO `test` VALUES ('1991', '2', '1.2'); INSERT INTO `test` VALUES ('1991', '3', '1.3'); INSERT INTO `test` VALUES ('1991', '4', '1.4'); INSERT INTO `test` VALUES ('1992', '1', '2.1'); INSERT INTO `test` VALUES ('1992', '2', '2.2'); INSERT INTO `test` VALUES ('1992', '3', '2.3'); INSERT INTO `test` VALUES ('1992', '4', '2.3');
看到題目要求,仔細想想可以:
利用SUM(IF()) 生成列 + WITH ROLLUP 生成匯總行,並利用 IFNULL將匯總行標題顯示為 Total_num
實現
SQL代碼塊如下:
select year, sum(if(month=1,amount,0)) as "M1", sum(if(month=2,amount,0)) as "M2", sum(if(month=3,amount,0)) as "M3", sum(if(month=4,amount,0)) as "M4" from test GROUP by year;
效果如下:
以上所述是小編給大家介紹的Mysql的列修改成行並顯示數據的簡單實現,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!