1.创建一个名为“学生管理”的数据库。 2.在学生管理数据库中,创建一个“学生档案”数据表,字段包括:
发布网友
发布时间:2023-01-09 15:15
我来回答
共1个回答
热心网友
时间:2023-10-23 19:22
create database 学生管理
create table 学生档案
(
id int identity(1,1) primary key not null,
sname nvarchar(20) not null,
sex nvarchar(20) not null,
...
)