Hi, there.
The row of tb_bbs_board is 2,441,972. But when I count it at query tab, it is 1,116,997. I checked it with putty, it is 1,116,997.
How I can fix it?
Thanks.
The row count in the database tab is not the result of a COUNT(*) query, but taken from a SHOW TABLE STATUS
result, which returns an approximate number only for InnoDB tables.
See https://mariadb.com/kb/en/show-table-status/#description
Column | Description |
---|---|
Rows | Number of rows in the table. Some engines, such as XtraDB and InnoDB may store an estimate. |
Please login to leave a reply, or register at first.