Sql Server 安装

1.官网下载(免费)
地址:https://www.microsoft.com/zh-cn/download/details.aspx?id=22973
安装参考:https://jingyan.baidu.com/article/c1a3101eb2e7dbde656debef.html
with Tools版本是自带图形界面的
2.设置登录密码
参考:https://jingyan.baidu.com/article/67508eb4dd32e09cca1ce43a.html
需要重启(右键重新启动)
3.基本操作
sql Server与MySQL的sql语法基本一致,但也有不同
如:
a.设置主键
sql Server:id int primary key not null IDENTITY
mysql:id int primary key not null auto_increment
b.values('Tom','80')mysql可以是双引号,sql Server是单引号
c.分页时
mysql:select * from student limit 0, 10;
sql Server:select top 10 * from student where id not in(select top 0 id from student);
更多参考:http://www.jb51.net/article/54346.htm

原文地址:https://www.cnblogs.com/fanshu/p/7850964.html