0

我想将列标题写入我的 csv 文件,但无法弄清楚如何使用select .. into语法。

我访问过这个页面,并查看了一些关于该主题的 SO 帖子。我想知道 MySQL 是否select .. into提供了编写列标题的功能,或者是否有另一种方法可以做到这一点,同时仍在编写 .csv 文件。命令行中的普通选择确实会写入列标题。

4

1 回答 1

-1

丑陋,但解决了你的问题,

select * INTO OUTFILE from (
select 'col1', 'col2', 'col3'
UNION ALL
select col1, col2, col3 from table_name) as t
于 2013-03-15T16:07:55.173 回答