create table student

create table student (
id varchar(10) not null,
name varchar(50) not null,
age int not null,
sex int not null,
major varchar(50) not null,
college varchar(50) not null,
introduction varchar(500) ,
primary key(id)
)

INSERT INTO student VALUES (‘1’, ‘name_1001’, 12, 1, ‘major_1001’, ‘college_1001’, ‘haotongxue’);

猜你喜欢

转载自blog.csdn.net/guoruijun_2012_4/article/details/118340370