Mysql
如何將 MySQL 查詢輸出保存到 Windows 機器上的文件?
假設我想將 MySQL 支持的排序規則的整個列表保存到文件中。如何將結果保存
show collation
到.txt
文件中?我使用的作業系統是 Windows。我嘗試過這樣的事情:show collation INTO OUTFILE 'c:\aaa.txt';
或者show collation > c:\aaa.txt;
但它不起作用。
select * into outfile 'filepath.txt' from information_schema.collations;
C: mysql -e "select * from information_schema.collations" >collations.txt