mysql - Getting the database structure of my existing database -


is possible database doesn't have database schema or information schema because have existing database, , want have database structure of it. can't able structure of

select * information_schema.columns  table_schema = 'test' , table_name ='products'; 

it gives error message

information_schema doesn't exist.

thanks!


Comments