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?
using this:
SHOW CREATE TABLE `users`;
will give you the DDL for that table
DESCRIBE `users`
will list the columns in that table