如何使用sql server语句获得当前计算机操作系统的版本。
------解决方案--------------------
SELECT @@VERSION
Copyright (c) Microsoft Corporation后面 那一段就是计算机的系统信息
------解决方案--------------------
开启xp_cmdshell
- SQL code
exec xp_cmdshell 'systeminfo'
------解决方案--------------------
- SQL code
EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;exec xp_cmdshell 'systeminfo'