公告
财富商城
积分规则
提问
发文
2019-07-31 02:32发布
时光不老,我们不散
can you make pivot/unpivot in mysql similar to ms sql server?
thanks
Here's a link to how SQL Pivot works: link text
There is no support for PIVOT. Instead you can use a JOIN. For example:
SELECT Table1.Value AS AValue, Table2.Value AS BValue FROM Table1 JOIN Table2 ON Table1.grp = Table2.grp AND Table2.Type = 'B' WHERE Table1.Type = 'A'
最多设置5个标签!
There is no support for PIVOT. Instead you can use a JOIN. For example: