“SQL Server Droptabelle, falls vorhanden” 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

T-SQL-Drop-Funktion, falls vorhanden

IF EXISTS (
    SELECT * FROM sysobjects WHERE id = object_id(N'function_name') 
    AND xtype IN (N'FN', N'IF', N'TF')
)
    DROP FUNCTION function_name
GO
Open Orangutan

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 “SQL Server Droptabelle, falls vorhanden”

Fragen ähnlich wie “SQL Server Droptabelle, falls vorhanden”

Weitere verwandte Antworten zu “SQL Server Droptabelle, falls vorhanden” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen