Answers for "sql drop table if exists synapse"

9

sql drop table if exists

DROP TABLE IF EXISTS dbo.Customers
Posted by: Guest on March-06-2020
2

sql server drop table if exists

-- Classic table
IF OBJECT_ID('my_schema.my_table', 'U') IS NOT NULL DROP TABLE my_schema.my_table; 
-- Temporary table
IF OBJECT_ID('tempdb.my_schema.#my_table') IS NOT NULL DROP TABLE #my_table;
Posted by: Guest on May-02-2021
0

sql drop table if exists synapse

IF OBJECT_ID(N'tempdb..#Customer') IS NOT NULL
BEGIN
DROP TABLE #Customer
END
Posted by: Guest on April-22-2022

Code answers related to "sql drop table if exists synapse"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language