MySQL 用數字輔助表實現複雜的列變行

來源:互聯網
上載者:User

某天,QQ上一個圈子內的網友發來一個求助資訊 :

PropID name   Amount
3      元寶   2
2      樂豆   3

能否用一條sql 寫成輸出,就是複製對應Amount 的條數 :

PropID name
3      元寶
3      元寶
2      樂豆
2      樂豆
2      樂豆

 

[注釋]:

3 元寶 2
注意, 最後一列是2,就是有2條這樣的記錄,要變成
3 元寶
3 元寶
將最後記錄條數的列去掉,直接用重複的行來表示,所以依照此例,2      樂豆   3,就要重複3條記錄,如下:

2      樂豆
2      樂豆
2      樂豆

 

 

研究了下,用普通的group by sum if case when之類的搞不定,得換種思路,一時hang住了,就與網友Mr.W說起,他提供了數字輔助表的思路。

OK,搞定了,SQL如下:

select t1.propid,t1.name from tb t1,(select 1 as num union select 2 as num union select 3 as num ) t2 where t1.amount>= t2.num order by 1; 

 

中間的,(select 1 as num union select 2 as num union select 3 as num ) t2 部分

最好你另外建一個num單列輔助表表,從1自增到N,給個幾萬就好,然後關聯查方便一些自串連的sql判斷,select貌似也沒迴圈產生數位功能。如下表nums

 

看到這裡的朋友,有更好的實現方法,請share下。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.