错误提示是:error 1064: 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 'mysqldump test > test.sql' at line 1
总是这个错误,是不是什么版本问题啊
我用mysql --help 又可以看到他的支持说明等内容,帮帮忙吧!拜托

解决方案 »

  1.   

    save test.sql;
    start test.sql;
      

  2.   

    to:
     classjava(原始野人) 
    save test.sql;
    start test.sql;这是什么意思啊,能详细一点说明嘛
      

  3.   

    你用的是什么操作系统?如果是windows可以用mysql-font,那个软件具有导出功能,具体的你可以和我聊聊,qq:6734471
      

  4.   

    mysqldump的一个例子:
    mysqldump TestABC -uroot -p密码 > /home/DbBackUp/TestABC.2004-10-29.sqlTestABC是数据库名,-u后面跟用户名,这里用的是root,-p后面跟本用户的密码,/home/DbBackUp/是备份文件存放路径,TestABC.2004-10-29.sql是sql文件名。