在dos下备份数据库的时候提示上面的错误信息
1 错误详情
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'mysql-v' at line 1
错误示例图
2 解决办法
通过查资料知道,不需要登录mysql,只需要在命令行下切换到mysql\bin目录,使用备份命令mysqldump即可
d:\phpStudy\MySQL\bin>mysqldump -uroot -proot testphp >d:\testphp.sqld:\phpStudy\MySQL\bin>
备份效果示例
-- 实操示例代码
mysqldump -h localhost -u root -p -P 3306 news > D:\20244\news_20240330.sql