SQL Server @@VERSION is a Configuration function that returns the Version, Edition, Processor Architecture, installation date, Operating System version, and Copyright Statement. The syntax behind this @@VERSION is
@@VERSION
@@VERSION Example
It will show you the Version details that we are currently running.
SELECT @@VERSION AS 'SQLServerVersion'