删除作业表
想创建一个表,但在创建前先判断是否存在。如存在就删除它,不存在就创建。 IF EXISTS(SELECT * FROM sys.Tables WHERE name='test_table') DROP TABLE test_table go