简体   繁体   中英

How to retrieve data from phpmyadmin in mysql workbench

I have used database -> reverse engineer to retrieve the schema from phpmyadmin. But when I tried it, the data records that filled in table do not appear in mysql workbench. The things that appear is only the relation and the structure/attribute of the tables. What should I do so that the data records can be retrieve from phpmyadmin? Thank you

Try exporting the database in .sql

Select Database > Export > SQL > Go

You probably tried to reverse engineer the script in the modeling section, which creates a model from the content. A model doesn't work with the actual data, but only the meta data (schema objects and structure).

If you actually want to import the full dump into your server then open an SQL connection to it from the homescreen and execute the script there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM