“Tropfentisch, wenn existiert” Code-Antworten

SQL -Droptabelle, falls vorhanden

DROP TABLE IF EXISTS dbo.Customers
Relieved Rook

SQL Server Droptabelle, falls vorhanden

IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores; 
MzanziLegend

Tropfentisch, wenn existiert

DROP TABLE IF EXISTS dbo.Scores
Giamblers

SQL -Droptabelle, falls vorhanden

DROP TABLE IF EXISTS my_table;
SAMER SAEID

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, falls vorhanden

IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL 
  DROP TABLE dbo.Scores; 
Scary Spider

Ähnliche Antworten wie “Tropfentisch, wenn existiert”

Fragen ähnlich wie “Tropfentisch, wenn existiert”

Weitere verwandte Antworten zu “Tropfentisch, wenn existiert” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen