You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use `SHOW STATS_META` to view how many rows are in a table and how many rows are changed in that table. When using this statement, you can filter the needed information by the `ShowLikeOrWhere` clause.
10
10
11
-
Currently, the `SHOW STATS_META` statement outputs 6 columns:
11
+
Currently, the `SHOW STATS_META` statement outputs the following columns:
12
12
13
13
| Column name | Description |
14
14
| -------- | ------------- |
15
-
| db_name | Database name |
16
-
| table_name | Table name |
17
-
| partition_name| Partition name |
18
-
| update_time | Last updated time |
19
-
| modify_count | The number of rows modified |
20
-
| row_count | The total row count |
15
+
| Db_name | Database name |
16
+
| Table_name | Table name |
17
+
| Partition_name| Partition name |
18
+
| Update_time | Last updated time |
19
+
| Modify_count | The number of rows modified |
20
+
| Row_count | The total row count |
21
+
| Last_analyze_time | The last time the table is analyzed |
0 commit comments