I am just starting with functions and it seems like I went a bit over my head with this one)
So for example I need to execute SELECT * FROM <table>
query. I need this query to be executed for all tables I have.
And list of table names is just another table, so to get all table names I have to execute SELECT table_names FROM meta_table_info
How can I do this for many tables using some sort of cycle?
Thank you beforehand.