提示你的SQL语句写错了。email varchar写错了。伙伴,改建了三次表,但是都没有找到错处。真正错处为 varchar
第一种情况是:root:/#mysql -u -p
Welcome to the MySQL monitor. Commands end with or \g.
Your MySQL connection id is 15 to server version: 5.0.91-enterprise-gpl
Type 'help' or '\h' for help. Type '\c' to clear the buffer.
mysql>show databases
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (1.05 sec)
mysql>
mysql>
mysql>
mysql>create database company
->
ERROR 1044: Access denied for user ''@'localhost' to database 'company'
mysql>
第二种情况是:
root:/#mysql -u root -p
Enter password: (我输入了密码)
ERROR 1045: Access denied for user 'root'@'localhost' (using password: YES)
root:/#
only13loving
采纳率:51%12级2013.09.22
试这两个
mysql -h 127.0.0.1 -u root -p
mysql -h servername -u root -p
出现1064一般都属于语法错误的情况。你试着把表名的单引号和把tinyint的长度去掉。DATE值的格式是'YYYY-MM-DD'。按照标准的SQL,不允许其他格式。日期支持的范围为’1000-01-01’到’9999-12-31’。但从表面上看,你写的这个SQL语句不存在错误,你仔细检查有没有多写了一个符号之类的。还要检查语句与语句间有没有空格。例如你这么写就是错误的:ENGINE=InnoDBDEFAULTCHARSET=gbkAUTO_INCREMENT=1CREATETABLEmessage(idtinyintnotnullauto_increment,uservarchar(25)notnull,titlevarchar(50)notnull,contenttinytextnotnull,lastdatedatenotnulldefault'0000-00-00',primarykey(id))ENGINE=InnoDBDEFAULTCHARSET=gbkAUTO_INCREMENT=1希望能帮助到你,欢迎追问,尽我所能为你解答。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)