- 已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
昨天关门了。
Improve this question
这是我第一次学习数据库,在学习过程中出现了以下错误:错误代码:1064.您的SQL语法中有错误;查看与MySQL服务器版本相对应的手册,了解在第4行中靠近')'使用的正确语法
如果你能帮助我,我将不胜感激!
我的代码:
create database registration;
use registration;
create table companies(
id_companyname int (50) auto_increment primary key,
companies varchar(50) unique not null,
);
'
1条答案
按热度按时间dldeef671#
会不会是这一行末尾多了一个逗号?请删除它。
companies varchar(50) unique not null,