我正在尝试备份数据库。我在Windows 10上打开MariaDB客户端控制台,输入root密码然后输入:
MariaDB [(none)]> mysqldump database_name > backup.sql;
它返回此错误:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'mysqldump database_name > backup.sql' at line 1
我做错了什么?
答案 0 :(得分:0)
尝试使用
mysqldump -u root -p database_name > file.sql
在登录数据库之前(新的CLI窗口)。您必须在此命令后输入root密码
您应该可以在任何CLI中运行此命令,例如CMD.exe或Git Bash - 具体取决于您在计算机上安装内容的方式。我希望这有帮助