phpMyAdmin Duplicate Table

PhpDatabasePhpmyadmin

Php Problem Overview


Is there some way to get phpMyAdmin to spit out the SQL needed to duplicate the table in another DB?

I saved it when I initially made the table but I've changed it quite a bit since then. It's a pretty big table and this would really help.

Php Solutions


Solution 1 - Php

Yes, you can navigate to the table you want and then go to (tab) Operations > Copy table to (database.table):, which is a box on the right hand side. There you can define into which database and under what name you'd like to copy your table. After having done than you get the SQL "spat out".

As I'm not completely sure about your question, if you'd like to have the table in a dump file, you could alternatively click the tab Export, where you can get the SQL as well, or download the dump file straight away.

Solution 2 - Php

You can use the Export tab to select which table to export. In the diagram below,

  • the album table is specified
  • Structure is checked
  • Data is unchecked - to not generate data with the export
  • SQL radio button is checked
  • ...
  • Click on the Go button at the bottom to have the generated SQL

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionI wrestled a bear once.View Question on Stackoverflow
Solution 1 - PhpHavelockView Answer on Stackoverflow
Solution 2 - PhpcodingbizView Answer on Stackoverflow