2008年8月7日 星期四

T-SQL筆記

如何查詢指定的資料庫是否存在? 語法:
use master
select * from sysdatabases where name='database_name'
如何查詢指定的表格是否存在? 語法:
select * from information_schema.tables
where table_name='table_name'

沒有留言:

張貼留言