What is the meaning of the symbol @@
in SQL Server?
In SQL Server, symbol @@
is prefixed to global variables.
The server maintains all the global variables. We cannot declare them.
Global variable names begin with a
@@
prefix. You do not need to declare them, since the server constantly maintains them. They are system-defined functions and you cannot declare them.
See Reference Here