Is it possible to somehow get structure of MySQL database, or just some table with simple query?
Or is there another way, how can I do it?
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'test' AND TABLE_NAME ='products';
where Table_schema is database name
Table_schema