统计人大金仓数据库中某个数据库中有多少张表
SELECT count(*) FROM sys_stat_user_tables
where schemaname='public'
统计人大金仓数据库中某个数据库中表记录数
SELECT schemaname,relname,n_live_tup FROM sys_stat_user_tables
where schemaname='public'
ORDER BY relname DESC;
统计人大金仓数据库中某个数据库中有多少张表
SELECT count(*) FROM sys_stat_user_tables
where schemaname='public'
统计人大金仓数据库中某个数据库中表记录数
SELECT schemaname,relname,n_live_tup FROM sys_stat_user_tables
where schemaname='public'
ORDER BY relname DESC;