摘要: sql server判断数据库、表、列、视图是否存在1 判断数据库是否存在if exists (select * from sys.databases where name = '数据库名')drop database [数据库名]2 判断表是否存在if exists (select * from ... 阅读全文
posted @ 2015-11-05 17:54 时刻保持上进心 阅读(405) 评论(0) 推荐(0)