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

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

WBOY
WBOY原創
2016-06-07 14:53:442611瀏覽

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