如何执行一个mysql的sql脚本文件
平时sql语句比较短的情况下,可以通过在mysql shell 界面下一条条的执行并查看输出结果 。如果sql语句比较多的情况下,这种方法就不现实了 。只能通过直接执行sql文件的方式 。
方法一:mysql 调用法
操作方式如下:
mysql –u用户名 –p密码 –D数据库<【sql脚本文件路径全名】
如果想输出到文件,可以按下面的方式执行:
1mysql –uroot –p123456 -Dtest <d:\test\ss.sql>d:\dd.txt
注:该方法在windows和linux平台下都可以 。
方法二:source 命令法
该方法是先登陆进入mysql控制台,并通过source 命令调用sql文件 ,如:
1mysql –uroot –p123456 -Dtest
2mysql> source /opt/test.sql
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/mysql-exec-sql-file/2646.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.