📜  SQL Server 数据库引擎的版本和版本 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:17.329000             🧑  作者: Mango

代码示例1
--version and edition of SQL Server Database Engine is running

--Step: Connect to the instance of SQL Server, and then run the following query in SQL Server Management Studio (SSMS):
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')