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


当前回答

创建表your_table_name 按GO键 显示表格后,在表格上方(+选项)有超链接。 按(+选项)超链接,然后出现一些选项选择(全文)=>按GO按钮。

其他回答

可以查询“information_schema”。直接列:

SELECT * FROM information_schema.columns 
WHERE table_name = 'your_table' AND table_schema = 'your_database'

执行SHOW CREATE TABLE <表名>;查询

在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);
}

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

假设我的表是abs_item_variations

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