(1)创建表的SQL语句
create table student
(
ID int primary key not null,
NAME varchar(50),
sex int,
age int,
classNO in
)
本文共 177 字,大约阅读时间需要 1 分钟。
(1)创建表的SQL语句
create table student
(
ID int primary key not null,
NAME varchar(50),
sex int,
age int,
classNO in
)
转载于:https://www.cnblogs.com/Berryxiong/p/6248426.html