I'm looking at some production SQL scripts and I see some table names that start with a hash #. Like,
select * from #tmp
or
IF OBJECT_ID('tempdb..#tmp') IS NOT NULL
DROP table #tmp;
Does # have an actual meaning? Why use it?
I'm looking at some production SQL scripts and I see some table names that start with a hash #. Like,
select * from #tmp
or
IF OBJECT_ID('tempdb..#tmp') IS NOT NULL
DROP table #tmp;
Does # have an actual meaning? Why use it?