加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DbInit.sql 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuyan 提交于 2020-07-04 11:29 . 期末作业
create database Schools
go
use Schools
go
create table Students
(
Id int primary key identity not null,
Name nvarchar(80) not null,
Age int not null,
Score int not null,
)
insert into Students(Name,Age,Score) values ('С',18,89)
insert into Students(Name,Age,Score) values ('С',18,89)
insert into Students(Name,Age,Score) values ('С',18,89)
insert into Students(Name,Age,Score) values ('С',18,89)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化