SQL判斷資料庫是否存在


判斷資料庫是否存在


Sql範例代碼如下


if not exists (select * from sys.databases where name = '資料庫名')

Create database [資料庫名]


這段是說明,如果資料庫不存在,創建資料庫。

留言

這個網誌中的熱門文章

Microsoft SQL Server Express Download 下載點一覽 (2008,2012,2014,2016,2017,2019)

C# 使用 OpenFileDialog 取得檔案名稱及路徑