2013年1月5日
摘要: --同时含有语言编号字段的所有表select a.[name] from sysobjects a,( select [id],count(*) b from syscolumns where [name] ='F_LanguageCode' group by [id]) b where a.[id]=b.[id]--同时含有语言编号和排序字段的所有表select a.[name] from sysobjects aleft join( select [id],count(*) b from syscolumns where [name] in('F_Langua... 阅读全文
posted @ 2013-01-05 16:30 Rain&Sun 阅读(594) 评论(0) 推荐(0)