SQL Server 2017 有两个免费版本
- Developer 版
- Express 版
但是,微软官方 SQL Server 下载页面,关于两个版本的介绍比较笼统,很难看出具体哪个更适合我目前的开发测试需求。
https://www.microsoft.com/en-us/sql-server/sql-server-downloads
Developer 版的介绍
SQL Server 2017 Developer is a full-featured free edition, licensed for use as a development and test database in a non-production environment.
Developer 版是免费的,并且包含了 SQL Server 的完整功能。但是只能用于开发和测试,而不可以用于生产环境。
Express 版的介绍
SQL Server 2017 Express is a free edition of SQL Server, ideal for development and production for desktop, web, and small server applications.
Express 版也是免费的,而且可以用于生产环境。但是只能用于小规模的使用场景,例如桌面应用,网站,和小的服务端应用。
Developer 版与 Express 版的具体区别
从官方的这个链接里能看到详细的区别
https://www.microsoft.com/en-us/sql-server/sql-server-2017-editions
可以看到 Developer 版跟企业版在功能上几乎一致,没有任何的硬件限制。只是 Developer 版不能用于生产环境。
而 Express 版可以用于生产环境,但是在硬件上是有明确限制的,例如
- 最多只能支持 CPU 四核
- 内存有限制
- 数据库文件大小也有限制
- 等等
转自:https://www.sunzhongwei.com/diff-between-the-sql-server-2017-developer-version-and-express-edition