📜  sql代码示例中的全局变量

📅  最后修改于: 2022-03-11 15:05:04.744000             🧑  作者: Mango

代码示例1
Global variables:
These variables are the variables which
can be accessed throughout the program.
Global variables cannot be created
whenever that function is called.

Local variables:
These variables can be used or exist 
only inside the function. These variables
are not used or referred by any other function.