SQL Server 查询数据库表的列数

 select count(*) from sysobjects a
join syscolumns b
on a.id=b.id
where a.name='表名'
go
上一篇:逆序对的数量


下一篇:LeetCode 202. 快乐数