码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 判断数据库是否存在,表是否存在

时间:2015-06-28 07:33:22      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

if DB_ID(‘testdb‘) is not null -- 如果这个数据库已经存在了

drop database testdb;

create database testdb;

 

 

if OBJECT_ID(‘dbo.user‘,‘u‘) is not null

drop table dbo.user;

create tablet dbo.user(......);

SQL Server 判断数据库是否存在,表是否存在

标签:

原文地址:http://www.cnblogs.com/JiangLe/p/4605067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!