sql 怎么把列变成行,已解决
UNINO ALL 拼接就可以,MYSQL为例:
SELECT 列1 AS 列 from 表名
UNION ALL
SELECT 列2 from 表名
SELECT 列3 from 表名
什么数据库?