db2统计表的数量及每个表的记录数

GMP_DY
是你的schemas名称 ,这里是我的schemas名称,记得换成你自己的

1.DB2中如何查询一个数据库中有多少张表的SQL语句
select count(*) from syscat.tables where tabschema=‘GMP_DY’;

2.DB2获取当前模式下面的所有用户表的SQL语句
select tabname from syscat.tables where tabschema = ‘GMP_DY’;

3. db2统计表的数量及每个表的记录数
select tabname,card from syscat.tables where tabschema = 'GMP_DY ';

你可能感兴趣的:(sql,数据库)