Hello
Can anyone tell me which is he better appraoch in MySQL whin it comes to finding the row count of a table: is it better to do
SELECT COUNT(*) FROM TABLE_NAME
or to look up the row count in the table TABLE
in the INFORMATION_SCHEMA
?
This would be a frequent operation for calculating pagination counts for pages?
I should add that tables will only have a few thousand rows at most.
Thanks
Martin O'Shea.