exec sp_columns 表名 --返回某个表列的信息
exec sp_help 表名 --查看某个表的所有信息
这些是系统的存储过程
例如:
用SQL语句查询一个数据表所有字段的类型可以参考下面的代码:
SELECT
name AS column_name,TYPE_NAME(system_type_id) AS column_type,
扩展资料:
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)
排序:select * from table1 order by field1,field2 [desc]
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
参考资料来源:百度百科-sql语句
exec sp_columns 表名 --返回某个表列的信息
exec sp_help 表名 --查看某个表的所有信息
这些是系统的存储过程
不知道是不是你要的
你只需要在select后面写上你想要查看的列 然后from 表名 where 条件 就行了 查看全部列的信息 直接在select后面加*
例: select * from 表名 (显示表中全部列的信息)
select 姓名 from 表名 (显示表中姓名这个列的信息)
select * from 表名
select 列名,列明,列明,··· from 表名