as shown in the figure below, there are obviously more than 20, 000 records in the table, but 0 is displayed using count (*). Is it locked? How to unlock it?
mysql> show table status like "md_org" \G
*************************** 1. row ***************************
Name: MD_ORG
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 26553
Avg_row_length: 337
Data_length: 8962048
Max_data_length: 0
Index_length: 5832704
Data_free: 4194304
Auto_increment: NULL
Create_time: 2018-08-27 11:09:17
Update_time: NULL
Check_time: NULL
Collation: utf8_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.01 sec)
mysql> select count(*) from md_org;
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.04 sec)