命令是这样写的:mysqldump -u root -p socail_reading > social.sql;
错误提示:
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
dump -u root -p socail_reading > social.sql' at line 1
socail_reading是数据库名吗?
是的
@葬神:
密码要与-p连在一起写
mysqldump -u root -p密码 socail_reading > social.sql
@dudu: 我密码是空
@葬神: 试试:
mysqldump -uroot -p socail_reading > social.sql
-u与root连在一起
@dudu: 报同样的错误。。。
@葬神: 去掉-p试试
@dudu: 依旧不行。
@葬神: 你要在操作系统的命令行下运行mysqldump,不是在mysql命令行下
@dudu: 非常感谢,您真是大神。