原文:SqlServer判断数据库、表、存储过程、函数是否存在

判断数据库是否存在 if exists select from sys.databases where name 数据库名 drop database 数据库名 判断表是否存在 if exists select from sysobjects where id object id N 表名 and OBJECTPROPERTY id, N IsUserTable drop table 表名 判断 ...

2012-01-14 13:45 0 7798 推荐指数:

查看详情

 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM