Is there any statement that can describe all tables in a database?
Something like this:
describe * from myDB;
There is no statement that describe all tables at once. But you may want to do something like this :
describe
SELECT * FROM information_schema.columns WHERE table_schema = 'db_name';