本文介绍了“#"是什么意思?在 TSQL 中的表名前面?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
TSQL 中的表名#mytable"和mytable"有什么区别?我在很多自定义过程中看到表名以#"开头.
what is the difference between the table names "#mytable" and "mytable" in TSQL? I see table names start with "#" in a lot of custom procedures.
推荐答案
这些是本地临时表,对于创建它们的进程是私有的.
These are local temporary tables which are private to the process that created them.
这篇关于“#"是什么意思?在 TSQL 中的表名前面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!