通过sql代码在phpmyadmin(wampserver)中创建表时出错

4ktjp1zp  于 2021-06-23  发布在  Mysql
关注(0)|答案(0)|浏览(227)

错误

1064-您的sql语法有错误;请查看与mysql服务器版本对应的手册,以获得正确的语法

'创建android\u php\u post表'(
id int(5)主键自动递增,
南'
3号线
我的代码

USE android_login

create table android_php_post(
   id int(5) primary key auto_increment,
   name varchar(40) not null,
   email varchar(50) not null unique,
   encrypted_password varchar(80) not null,
   salt varchar(10) not null,
   gender varchar(6) not null,
   age int(6) not null
);

我真的不明白代码的语法出了什么问题,所以我想一定是别的什么问题?即使我没有使用任何参数,它也会出现同样的错误。在下面的代码中,还会显示一条错误消息,以检查手册中“create table”附近代码的语法

USE android_login

create table android_php_post(
);

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题