create table student(
SID char(10),
Name varchar(100) not null,
Units char(10),
constraint primary key(Sid)
)engine=innodb;
this is correct but i need a anther column call Level
create table student(
SID char(10),
Name varchar(100) not null,
Units char(10),
class level char(10),
constraint primary key(Sid)
)engine=innodb;
i can't run this
i don't know why please explain
thanks