我有一个看起来像这样的 mysql 表:
id | col_1 | col_2 | col_3
---|-------|-------|------
1 | 2 | 34 | 64
2 | 6 | 53 | 23
我希望能够查询 id 并获取多行,每列一个。例如:
SELECT column_name as column, column_value as value FROM my_table WHERE id=1;
这会给我:
column | value
-------|-------
col_1 | 2
col_2 | 34
col_3 | 64
我需要用什么来制定这样的查询?
非常感谢