才开始学mysql,由于待在家里是看的老师的网课,有一些基础的问题想请教一下大家。
你创建表的时候要创建列才行,你加了分号表示结束当前sql。
create table student ( stuid integer not null, stuname varchar(20) not null, stusex bit default 1, primary key (stuid) );