Meaning of the Symbol @@ in SQL Server

前端 未结 2 1857
故里飘歌
故里飘歌 2021-02-20 07:13

What is the meaning of the symbol @@ in SQL Server?

相关标签:
2条回答
  • 2021-02-20 07:37

    In SQL Server, symbol @@ is prefixed to global variables.

    The server maintains all the global variables. We cannot declare them.

    0 讨论(0)
  • 2021-02-20 07:41

    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

    enter image description here

    0 讨论(0)
提交回复
热议问题