I am using the following query to get approximate row counts in a mysql table:
SELECT table_name, table_rows
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'avails';
My questions is, is there an additional parameter that shows if the row count is exact or approximated? If not, how is this done in a client like SequelPro where it can show an immediate number of table rows, and it will add a tilda (~) if it is not an exact count?