Answers for "temp table delete if exists"

SQL
1

if temp table exists drop

if object_id(N'tempdb..#MaxTransaction') is not null drop table #MaxTransaction
Posted by: Guest on June-22-2021
0

Check if a temporary table exists and delete if it exists

DROP TABLE IF EXISTS #lu_sensor_name_19 

CREATE TABLE #lu_sensor_name_19...
Posted by: Guest on August-11-2020

Code answers related to "temp table delete if exists"

Code answers related to "SQL"

Browse Popular Code Answers by Language