SQL Server 查询数据库表的列数
1 select count(*) from sysobjects a 2 join syscolumns b 3 on a.id=b.id 4 where a.name='表名' 5 go
1 select count(*) from sysobjects a 2 join syscolumns b 3 on a.id=b.id 4 where a.name='表名' 5 go
 
                
            
         感谢您的阅读,敬请关注我的后续博客文章
        感谢您的阅读,敬请关注我的后续博客文章
        