SQL 2005中查看一个表的基本信息: sp_help tablename,如没有tablename则返回当前数据库所有表的基本信息 select * from information_schema.columns where table_name ='product1 ' 这个也可查看指定表的信息。 其他可能还有,暂时只知道这二个.