daglugub37
Technical User
Is there anyway I can retrieve a temp table(# table) if I closed the session that created it?
Can I query the temporary database for it?
Can I query the temporary database for it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Create table #temp (enter structure)
insert #temp (enter query to populate)
select x from #temp
drop table #temp