I wrote this select command, which gives me tables with the associated number of columns from the database.
SELECT
t.TABLE_NAME,
(SELECT
COUNT(*)
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
table_name = t.TABLE_NAME) as COLUMNS
FROM INFORMATION_SCHEMA.TABLES t
I have now tried to extend this and to get the rows as well but i fail all the time. There is a solution in a another thread, but I am missing the TABLE_ROWS from INFORMATION_SCHEMA.TABLES. Is there maybe another way to get the rows?