“SQL Droptabelle, wenn existiert Synapse” Code-Antworten

SQL -Droptabelle, falls vorhanden

DROP TABLE IF EXISTS dbo.Customers
Relieved Rook

SQL Server Droptabelle, falls vorhanden

-- 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; 
VasteMonde

SQL Droptabelle, wenn existiert Synapse

IF OBJECT_ID(N'tempdb..#Customer') IS NOT NULL
BEGIN
DROP TABLE #Customer
END
dr4ft

Ähnliche Antworten wie “SQL Droptabelle, wenn existiert Synapse”

Fragen ähnlich wie “SQL Droptabelle, wenn existiert Synapse”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen