Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列ヘッダーを csv ファイルに書き込みたいのですが、select .. into構文を使用してその方法を理解できません。
select .. into
このページにアクセスしただけでなく、この件に関する SO の投稿もいくつか見ました。MySQLselect .. intoが列ヘッダーを書き込む機能を提供しているかどうか、または .csv ファイルを書きながら別の方法でそれを行う方法があるかどうか疑問に思っています。コマンドラインでの単純な選択は、列ヘッダーを書き込みます。
醜いが、あなたの問題を解決し、
select * INTO OUTFILE from ( select 'col1', 'col2', 'col3' UNION ALL select col1, col2, col3 from table_name) as t