What is the meaning of the symbol @@ in SQL Server?
@@
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