如何在phpmyadmin中为现有的表生成创建表脚本?


当前回答

这可能是一个晚答复。但它可能会帮助其他人。在MY SQL Workbench中非常简单(我使用的是Workbench版本6.3和MY SQL版本5.1社区版):右键单击需要创建脚本的表,选择“复制到剪贴板—>创建语句”选项。只需粘贴任何文本编辑器,您想要获得创建脚本。

其他回答

在sql选项卡中使用以下查询: 按GO键 表后显示,表上方(+选项)超链接。 按下+选项超链接,然后出现一些选项选择(满 文本)按GO按钮。 显示sql查询。

使用PHP函数。

当然查询函数($this->模型)你必须改变自己。

/**
 * Creating a copy table based on the current one
 * 
 * @param type $table_to_copy
 * @param type $new_table_name
 * @return type
 * @throws Exception
 */
public function create($table_to_copy, $new_table_name)
{
    $sql = "SHOW CREATE TABLE ".$table_to_copy;

    $res = $this->model->queryRow($sql, PDO::FETCH_ASSOC);

    if(!filled($res['Create Table']))
        throw new Exception('Could not get the create code for '.$table_to_copy);

    $newCreateSql = preg_replace(array(
        '@CREATE TABLE `'.$table_to_copy.'`@',
        '@KEY `'.$table_to_copy.'(.*?)`@',
        '@CONSTRAINT `'.$table_to_copy.'(.*?)`@',
        '@AUTO_INCREMENT=(.*?) @',
    ), array(
        'CREATE TABLE `'.$new_table_name.'`',
        'KEY `'.$new_table_name.'$1`',
        'CONSTRAINT `'.$new_table_name.'$1`',
        'AUTO_INCREMENT=1 ',
    ), $res['Create Table']);

    return $this->model->exec($newCreateSql);
}

在MySQL工作台中,您可以获得已经创建的表脚本,只需右键单击特定的表,然后选择发送到SQL编辑器>>创建语句。这就是在编辑器上创建表脚本所得到的全部内容。

执行query is sql选项卡

SHOW CREATE TABLE tableName

点击

+选项->选择全文->单击“继续”

复制“创建表”查询并粘贴到要创建新表的位置。

还有一种方法。在phpMyAdmin的左面板中选择目标表,单击Export选项卡,取消选择Data block,然后单击Go按钮。