I want to display all data in my Database without writing a select for each table - how can I do this?
select
I do not want to do this:
For mysql:
Run SELECT information_schema.TABLES.TABLE_NAME FROM information_schema.TABLES where table_schema='db_name'
Create a loop which will run select query for each table gotten from the first query.