在sql server中如何用sql语句求表中的属性列的个数?

2025-01-07 05:11:11
推荐回答(1个)
回答1:

select count(*) from syscolumns
where id = object_id('tablename')