欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

在新建数据库的时候判断要建的数据库是否存在

程序员文章站 2022-06-07 09:23:21
...

在新建数据库的时候判断要建的数据库是否存在 if(exists( select * from sys.databases where name=数据库名)) begin www.2cto.com print 存在 end else begin print 不存在 end


在新建数据库的时候判断要建的数据库是否存在

if(exists( select * from sys.databases where name='数据库名'))

begin www.2cto.com

print '存在'

end

else

begin

print '不存在'

end