当前位置: 代码迷 >> Sql Server >> sysobjects解决方法
  详细解决方案

sysobjects解决方法

热度:61   发布时间:2016-04-27 16:23:10.0
sysobjects
我想查出数据库A里面所有的表及表的数据条数?怎么用SQL语句写出?
谢谢!
-----------------------
            CSDN   论坛助手  
    http://china-csdn.cn

------解决方案--------------------
create table AAA(id int identity(1,1),tablename varchar(50),[rowcount] int)

delete from AAA

exec sp_msforeachtable 'insert AAA(tablename, [rowcount]) select N ' '? ' ', count(*) from ? '

select * from AAA
  相关解决方案