CSS做的下拉表單

很棒的CSS下拉表單

不僅有設計感而且code也精簡,cool!

http://solardreamstudios.com/_img/learn/css/cssmenus/index-horiz.html#

查詢資料庫中欄位名出現在哪些table

查詢資料庫中哪些talbe有groupID欄位
sp_msforeachtable 'if exists(select top 1 * from ? where GroupID like ''%'') select ''?'''

查詢資料庫中applyman欄位值為429的table有哪幾個
sp_msforeachtable 'if exists(select top 1 * from ? where applyman = ''429'') select ''?'''

查詢MSSQL資料庫中所有欄位的資料筆數

select a.name,max(b.rows) as rows  from sysobjects a,sysindexes b where a.id= b.id and a.xtype = 'u'
group by a.name

*MSSQL專用