“SQL Server Check Table ada” Kode Jawaban

Tes T-SQL jika ada tabel

IF (EXISTS (SELECT * 
                 FROM INFORMATION_SCHEMA.TABLES 
                 WHERE TABLE_SCHEMA = 'TheSchema' 
                 AND  TABLE_NAME = 'TheTable'))
BEGIN
    --Do Stuff
END
Caleb McNevin

SQL Server Check Table ada

IF EXISTS 
  (SELECT object_id FROM sys.tables
  WHERE name = 'Artists'
  AND SCHEMA_NAME(schema_id) = 'dbo')
  PRINT 'The table exists'
ELSE 
  PRINT 'The table does not exist';
Blue Badger

Jawaban yang mirip dengan “SQL Server Check Table ada”

Pertanyaan yang mirip dengan “SQL Server Check Table ada”

Lebih banyak jawaban terkait untuk “SQL Server Check Table ada” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya