通过一个sql语句查询一个表中字段的个数

select
	a.name
	,count(0) 字段总数
from 
	sys.objects a 
	inner join sys.all_columns b on a.object_id=b.object_id
where
	a.type='U' and a.name='表名'
group by
	a.name

 

 

你可能感兴趣的:(SqlServer,统计表里字段数量)