linux导出sql查询结果的命令方法
程序员文章站
2022-07-02 18:50:39
导出命令
mysql -h172.0.0.1 -uxxxx -pxxxx -p3306 -e”select * from user” > /temp/test.txt...
导出命令
mysql -h172.0.0.1 -uxxxx -pxxxx -p3306 -e”select * from user” > /temp/test.txt
语法说明
-h :ip
-u :用户名
-p:密码
-p:端口
-e :sql语句,需要用引号包起来
选择数据库
在sql里面加个 use database(数据库) 如:use test;select * from user
导出文件
直接导出test.txt会很慢,建议先压缩 zip test.zip test.txt 将 test.txt压缩为test.zip文件
下载文件命令
sz test.zip