表名為zwj,欄位為sp,查詢sp欄位中含有"所有"的語句為select * from zwj where sp like "%所有%" --表名為zwj,欄位為sp,查詢sp欄位中含有"所"或"有"的語句為select * from zwj where sp like "%所%" or sp like "%有%"
二、含有醫院編號欄位的所有表
select a.[name] 表名 from sysobjects a,
( select [id],count(*) b from syscolumns
where [name] ="HospitalId"
group by [id])
b where a.[id]=b.[id]
三、同時含有醫院編號和科室編號欄位的所有表
select a.[name] 表名 from sysobjects a
left join
(select [id],count(*) b from syscolumns where [name]
in("HospitalId","DepartmentId") group by [id] having count(*)>1) b
一、舉個例子
表名為zwj,欄位為sp,查詢sp欄位中含有"所有"的語句為select * from zwj where sp like "%所有%" --表名為zwj,欄位為sp,查詢sp欄位中含有"所"或"有"的語句為select * from zwj where sp like "%所%" or sp like "%有%"
二、含有醫院編號欄位的所有表
select a.[name] 表名 from sysobjects a,
( select [id],count(*) b from syscolumns
where [name] ="HospitalId"
group by [id])
b where a.[id]=b.[id]
三、同時含有醫院編號和科室編號欄位的所有表
select a.[name] 表名 from sysobjects a
left join
(select [id],count(*) b from syscolumns where [name]
in("HospitalId","DepartmentId") group by [id] having count(*)>1) b
on a.[id]=b.[id]
where b.id is not null
sqlserver資料庫主要特性:
(1)高效能設計,可充分利用WindowsNT的優勢。
(2)系統管理先進,支援Windows圖形化管理工具,支援本地和遠端的系統管理和配置。
(3)強壯的事務處理功能,採用各種方法保證資料的完整性。
(4)支援對稱多處理器結構、儲存過程、ODBC,並具有自主的SQL語言。 SQLServer以其內建的資料複製功能、強大的管理工具、與Internet的緊密整合和開放的系統結構為廣大的使用者、開發人員和系統整合商提供了一個出眾的資料庫平臺。