Answers for "drop tadrop table if exists SQ:"

SQL
2

drop table if exists

DROP TABLE IF EXISTS dbo.Scores
Posted by: Guest on November-25-2020
0

if table exists drop

IF EXISTS(SELECT *
          FROM   dbo.Scores)
  DROP TABLE dbo.Scores
Posted by: Guest on July-04-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language