Mysql

如何將 MySQL 查詢輸出保存到 Windows 機器上的文件?

  • September 26, 2020

假設我想將 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

引用自:https://dba.stackexchange.com/questions/275944