❶ 判斷資料庫是否存在:如何判斷資料庫表已經存在
判斷資料庫是否存在的sql語句:打開查詢分析器,輸入圖中sql代碼。
2
輸出結果:結果和消息。
end
判斷資料庫某個表是否存在
1
判斷sql語句:select
*
db..syscolums
where
id=object_id('db.dbo.seque')
(db是已知存在的資料庫)。
2
輸出結果:顯示出該表中所有欄位名及屬性。
end
判斷已知表中某個欄位是否存在
sql語句:select
*
from
db..syscolums
where
id=object_id('db.dbo.seque')
and
name='s_id'
輸出結果。
end
vc使用案例
1
利用ado方法調用資料庫,記錄集打開sql語句,如圖所示。
❷ 如何判斷資料庫中是否存在某個數據
在sql
server資料庫編程時,常常需要判斷一個資料庫是否已經存在,如果不存在則創建此資料庫。常用的方法有以下三種:
1.
select
*
from
master.dbo.sysdatabases
where
name='test_db'
如果不存在查詢結果,則說明name所表示的資料庫不存在
2.
object_id('test_db')
如果無法獲取對象id(null),則說明此對象不存在;常用
if
object_id('test_db')
is
null
或者
if
(select
object_id('test_db'))
is
null
3.
db_id('test_db')
如果不能獲取資料庫id,則說明name所表示的資料庫不存在;實際上此種方法也是在sysdatabases中查找,並返回資料庫的id;常用
if
db_id('test_db')
is
null
或者
if
(select
db_id('test_db'))
is
null
❸ 如何判斷資料庫中是否存在某個數據
在SQL Server資料庫編程時,常常需要判斷一個資料庫是否已經存在,如果不存在則創建此資料庫。常用的方法有以下三種:
1. select * From master.dbo.sysdatabases where name='test_db'
如果不存在查詢結果,則說明name所表示的資料庫不存在
2. object_id('test_db')
如果無法獲取對象ID(null),則說明此對象不存在;常用
if object_id('test_db') is null
或者
if (select object_id('test_db')) is null
3. db_id('test_db')
如果不能獲取資料庫ID,則說明name所表示的資料庫不存在;實際上此種方法也是在sysdatabases中查找,並返回資料庫的ID;常用
if db_id('test_db') is null
或者
if (select db_id('test_db')) is null