写接口练习题
时间:2021-03-16 13:47:22
收藏:0
阅读:0
create table TbStudent
(
stuid integer not null,
stuname varchar(20) not null,
stusex bit default 1,
stubirth datetime not null,
stutel char(11),
stuaddr varchar(255),
stuphoto longblob,
primary key (stuid)
);
创建表语句
评论(0)