How to generate a create table script for an existing table in phpmyadmin?

前端 未结 11 2119
旧时难觅i
旧时难觅i 2020-12-02 03:59

How can I generate a create table script for an existing table in phpmyadmin?

相关标签:
11条回答
  • 2020-12-02 04:13

    Mysqladmin can do the job of saving out the create table script.

    Step 1, create a table, insert some rows:

    create table penguins (id int primary key, myval varchar(50))
    insert into penguins values(2, 'werrhhrrhrh')
    insert into penguins values(25, 'weeehehehehe')
    select * from penguins
    

    Step 2, use mysql dump command:

    mysqldump --no-data --skip-comments --host=your_database_hostname_or_ip.com -u your_username --password=your_password your_database_name penguins > penguins.sql
    

    Step 3, observe the output in penguins.sql:

    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;
    /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
    /*!40103 SET TIME_ZONE='+00:00' */;
    /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
    /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
    /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
    /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
    DROP TABLE IF EXISTS `penguins`;
    /*!40101 SET @saved_cs_client     = @@character_set_client */;
    /*!40101 SET character_set_client = utf8 */;
    CREATE TABLE `penguins` (
      `id` int(11) NOT NULL,
      `myval` varchar(50) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    /*!40101 SET character_set_client = @saved_cs_client */;
    /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
    
    /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
    /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
    /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
    

    The output is cluttered by a number of executional-condition tokens above and below. You can filter them out if you don't want them in the next step.

    Step 4 (Optional), filter out those extra executional-condition tokens this way:

    mysqldump --no-data --skip-comments --compact --host=your_database_hostname_or_ip.com -u your_username --password=your_password your_database_name penguins > penguins.sql
    

    Which produces final output:

    eric@dev /home/el $ cat penguins.sql
    
    DROP TABLE IF EXISTS `penguins`;
    CREATE TABLE `penguins` (
      `id` int(11) NOT NULL,
      `myval` varchar(50) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    
    0 讨论(0)
  • 2020-12-02 04:15

    Query information_schema.columns directly:

    select * from information_schema.columns 
    where table_name = 'your_table' and table_schema = 'your_database'
    
    0 讨论(0)
  • 2020-12-02 04:16

    Run SHOW CREATE TABLE <table name> query.

    0 讨论(0)
  • 2020-12-02 04:22

    Right click on table name-->choose open table --> Go to Info Tab

    and the scroll down to see create table script

    0 讨论(0)
  • 2020-12-02 04:23

    One more way. Select the target table in the left panel in phpMyAdmin, click on Export tab, unselect Data block and click on Go button.

    0 讨论(0)
  • 2020-12-02 04:31

    Use the following query in sql tab:

    SHOW CREATE TABLE tablename
    

    To view full query There is this Hyperlink named +Options left above, There select Full Texts

    0 讨论(0)
提交回复
热议问题