请教MYSQL导入问题 请问导入后提示这个错误 是什么意思
错误
SQL 查询:
Warning : The OPTION '--all' IS deprecated AND will be removed IN a future release.Please USE - - CREATE - options instead.-- MySQL dump 10.13 Distrib 5.1.44, for pc-linux-gnu (i686)
--
-- Host: localhost Database: pere_pz
-- ------------------------------------------------------
-- Server version 5.1.44
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
MySQL 返回:文档
#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 'Warning: The option '--all' is deprecated and will be removed in a future releas' at line 1
答案:正如楼上所说,你的 --all 在你的当前MYSQL版本中已被遗弃,不能使用了。
估计你的程序有点老了……
其他:从这个提示上看,是要你用“--CREATE”代替“--all”这个选件。 警告:不推荐使用 --all选项,未来的版本将删除该选项,用-代替--。
上一个:mysql怎么自动获取时间
下一个:mysql中固定的几种值应该用什么类型