摘要: //查询所有用户表select [name], [id] from sysobjects where [type] = 'U';//查询所有系统表select [name], [id] from sysobjects where [type] = 'S';//列出数据表中的所有字段select * from syscolumns where ID = OBJECT_ID('S_CityList')... 阅读全文
posted @ 2010-10-29 09:53 袁雷 阅读(131) 评论(0) 推荐(0)