在SQL Server 中新建一个查询(new Query),然后输入下面的SQL脚本,即可看到当前的数据库的Service Package (补丁包)的版本号
select serverproperty('productversion')
,serverproperty('productlevel')
,serverproperty('edition')
效果如下:
2022-04-07 23:29:38
在SQL Server 中新建一个查询(new Query),然后输入下面的SQL脚本,即可看到当前的数据库的Service Package (补丁包)的版本号
select serverproperty('productversion')
,serverproperty('productlevel')
,serverproperty('edition')
效果如下: