1 判断数据库是否存在 1 2 if exists (select * from sys.databases where name = 数据库名) drop database [数据库名] 2 判断表是否存在 1 2 if exists (select * from sysobjects where id = object_id(N[表名]) and OBJECTPROPE
1 判断数据库是否存在
2 判断表是否存在
3 判断存储过程是否存在
4 判断临时表是否存在
5 判断视图是否存在
6 判断函数是否存在
7 获取用户创建的对象信息
8 判断列是否存在
9 判断列是否自增列
10 判断表中是否存在索引
|
2021-10-16
2022-09-14
2022-08-25
2022-03-01
2022-08-25