information_scheme difference row when im counting the table with
select count(id) from mytable
and
SELECT
engine AS Engine
,
table_name AS Table
,
table_rows AS Rows
,
round(((data_length + index_length) / 1024 / 1024), 2) as Size
FROM
information_schema.TABLES
WHERE
table_schema = mytable
ORDER BY
Size desc;
HeidiSql version 9.5.0.5282 (64 Bit)