首页 >数据库 >mysql教程 >在新建数据库的时候判断要建的数据库是否存在

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

WBOY
WBOY原创
2016-06-07 14:53:442630浏览

在新建数据库的时候判断要建的数据库是否存在 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
 

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn