SELECT 'dept' AS table_name, COUNT(*) AS row_count FROM DEPT; SELECT 'emp' AS table_name, COUNT(*) AS row_count FROM EMP; ...