I would like to know how many rows are in each table in my database. I\'ve come so far as to having
select count(*) _tablename_;
However i wou
SELECT table_name, table_rows FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '';
I also hope you realise there's an error in your query: it's missing a FROM.
FROM