很棒的CSS下拉表單
不僅有設計感而且code也精簡,cool!
http://solardreamstudios.com/_img/learn/css/cssmenus/index-horiz.html#
六月 30, 2007 位於 星期六, 六月 30, 2007 張貼者: joehwang
很棒的CSS下拉表單
不僅有設計感而且code也精簡,cool!
http://solardreamstudios.com/_img/learn/css/cssmenus/index-horiz.html#
六月 06, 2007 位於 星期三, 六月 06, 2007 張貼者: joehwang
查詢資料庫中哪些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 ''?'''
位於 星期三, 六月 06, 2007 張貼者: joehwang
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專用