1
我有和this person一樣的確切問題,但是對於MySQL而不是SQL Server。可以用MySQL完成取消組合嗎? MySQL不幸的是沒有「Unpivot」功能。這裏是什麼,我需要一個例子:MySQL查詢取消組合數據
原始數據:
----------------------------------
owner id | name | occurances
----------------------------------
1 | red | 4
1 | yellow | 2
1 | green | 3
----------------------------------
查詢輸出:
---------------
id | name
---------------
1 | red
1 | red
1 | red
1 | red
1 | yellow
1 | yellow
1 | green
1 | green
1 | green
---------------
這是MySQL的一個有效的解決方案,謝謝。 – Mike 2013-03-10 20:13:41