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

前端 未结 11 2151
旧时难觅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: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

提交回复
热议问题