赞
踩
到微软官网下载SQL Server Developer版本,现在的最新版本是SQL Server 2022 Developer。微软官网传送门:点击此处直达
没有以下问题,可以跳过这里的浏览,继续安装
右键点击属性
然后确定就可以了
把目录下的文件夹都要点击属性,检查是否压缩了,如果有压线,就取消。
继续安装
安装包下载并提取完成之后,会出现下图所示的界面
这里是灰色的解决方法
win 加r打开运行窗口
输入regedit
只剩下默认的,删除其他
然后确定就可以了
按这你存放的路径都检查一边,如我只要一个C盘,把Microsoft SQL Server放在OS(C:)>Program Files这里,则OS(C:)、Program Files都要点击属性,检查是否压缩了,步骤和上面一样。
继续安装
这里功能看需求选择,可以参考一下
点击安装即可
到微软官网下载SQL Server Management Studio,如下图所示。
官网传送门:点此直达官网
首次进入的话,默认可以直接连接。
连接成功
- Use Students
- go
- Create table StudInfo
- (StudNo char(12) not null primary key,
- Name char(8) not null,
- Sex bit not null default 0,
- IdNo char(18) not null unique,
- Mobile char(11),
- CourseNum int default 0,
- ClassName char(10) not null,
- constraint ck_StudInfo_Sex check(sex=0 or sex=1))
- Go
- Create table CourseInfo
- (CourseNo char(6) not null primary key,
- CourseName varchar(20) not null,
- CourseXF int not null,
- CourseKS int not null
- )
- Go
- Create table Score
- (StudNumber char(12) not null,
- CourseNumber char(6) not null,
- Times int not null default 1,
- KSTime datetime not null,
- Score decimal(5,2),
- Constraint pk_Score primary key(StudNumber, CourseNumber, Times),
- Constraint fk_Score_StudInfo_StudNo foreign key(StudNumber) references StudInfo(StudNo),
- Constraint fk_Score_CourseInfo_CourseNumber foreign key(CourseNumber) references CourseInfo(CourseNo),
- Constraint ck_Score_Score check(Score>=0 and Score<=100)
- )
- Go
写入代码并执行。
-
-
-
- INSERT INTO StudInfo VALUES ('201010010401', '王雪', 1, '370101199005012423', '18922946312', 3, '应用1001');
- INSERT INTO StudInfo VALUES ('201010010402', '刘灿灿', 0, '250105839383829492', '13285839205', 3, '应用1001');
- INSERT INTO StudInfo VALUES ('201010020403', '张薇', 1, '370502199008258524', '13375849281', 0, '应用1002');
- GO
-
-
-
-
-
- INSERT INTO CourseInfo VALUES ('080025', '程序设计基础', 6, 96);
- INSERT INTO CourseInfo VALUES ('080103', '网络基础', 4, 64);
- INSERT INTO CourseInfo VALUES ('090101', '大学英语', 8, 128);
- GO
-
-
-
-
-
- INSERT INTO Score VALUES ('201010010401', '080025', 1, '2011-12-26 9:00', 89);
- INSERT INTO Score VALUES ('201010010401', '080103', 1, '2011-12-26 14:00', 92);
- INSERT INTO Score VALUES ('201010010401', '090101', 1, '2011-12-24 9:00', 83);
- GO
-
编辑前200行这里可以查看看看哪个表插入的数据
简单的T-SQL编程就演示到这里!赶快学习去吧!
感谢您的浏览,希望可以帮到您。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。