Returns the date, version, and processor type for the current installation of Microsoft® SQL Server™.
@@VERSION
nvarchar
The information returned by @@VERSION is similar to the product name, version, platform, and file data returned by the xp_msver stored procedure, which provides more detailed information.
This example returns the date, version, and processor type for the current installation.
SELECT @@VERSION
xp_msver | Configuration Functions |