永发信息网

这个SQL创建表的语句,哪里错了?

答案:3  悬赏:70  手机版
解决时间 2021-08-13 12:28
  • 提问者网友:浪荡绅士
  • 2021-08-12 13:00

use account;

create table user (
  usermameid int unsigned not null auto_increment prinary key,
  usermame char(20) not null,
  passwd char(30) not null,
  ses char(20) not null,
  age char(20) not null,
  identity char(20) not null,
  email varchar(100) not null
);

create table user2 (
  identityid int unsigned not null auto_increment prinary key,
  parents char(50) not null,
  identity char(20) not null
);

create table user3 (
  identityid int unsigned not null,
  member char(100) not null
);

最佳答案
  • 五星知识达人网友:逐風
  • 2021-08-12 14:15

use account


go


create table user (
  usermameid int unsigned not null auto_increment prinary key,
  usermame char(20) not null,
  passwd char(30) not null,
  ses char(20) not null,
  age char(20) not null,
  identity char(20) not null,
  email varchar(100) not null
)


create table user2 (
  identityid int unsigned not null auto_increment prinary key,
  parents char(50) not null,
  identity char(20) not null
)


create table user3 (
  identityid int unsigned not null,
  member char(100) not null
)

全部回答
  • 1楼网友:渡鹤影
  • 2021-08-12 17:12

不能要分号

  • 2楼网友:摆渡翁
  • 2021-08-12 15:40
use account; 改为 use accountGO
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯