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


当前回答

右击表名 选择开放式餐桌 进入信息选项卡

向下滚动查看创建表脚本

其他回答

导出整个数据库选择格式为SQL。现在,使用notepad, notepad++或任何编辑器打开你下载的SQL文件。您将看到数据库的所有表和插入查询。所有脚本都将在那里可用。

我找到了另一种在sql文件中导出表的方法。

假设我的表是abs_item_variations

abs_item_variations ->structure -> propose table structure -> export -> Go

右击表名 选择开放式餐桌 进入信息选项卡

向下滚动查看创建表脚本

使用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);
}

执行query is sql选项卡

SHOW CREATE TABLE tableName

点击

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

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