0

是否可以在特定时间找出所有表中的行数(不取决于任何列值)?

谢谢!

4

1 回答 1

1

try:

select sum(num_rows) 
from user_tables;

user_tables is a timesten table with useful information about the tables in the schema. It has a num_rows attribute that will give you what you are looking for.

于 2013-09-16T17:35:34.200 回答