如何用SQL语句在一个已有数据库内新建一个表

2024年11月20日 22:32
有1个网友回答
网友(1):

用create table来创建

create table dep
(
depNo int primary key,
depName varchar(50) not null,
depMan varchar(50) not null
)