Maison > Article > base de données > 查看SQL server 2008 R2 的Service Package 版本号(同样适用于SQL Server 2
在SQL Server 中新建一个查询(new Query),然后输入下面的SQL脚本,即可看到当前的数据库的Service Package (补丁包)的版本号 select serverproperty('productversion'),serverproperty('productlevel'),serverproperty('edition')
在SQL Server 中新建一个查询(new Query),然后输入下面的SQL脚本,,即可看到当前的数据库的Service Package (补丁包)的版本号
select serverproperty('productversion') ,serverproperty('productlevel') ,serverproperty('edition')