Come generare uno script di creazione tabella per una tabella esistente in phpmyadmin?


246

Come posso generare uno script di creazione tabella per una tabella esistente in phpmyadmin?

Risposte:


513

Utilizzare la seguente query nella scheda sql:

SHOW CREATE TABLE tablename

Per visualizzare la query completa Esiste questo collegamento ipertestuale denominato + Opzioni lasciato sopra, Seleziona testi completi


1
C'è un modo per specificare quale database, ad esempio se si hanno più database che contengono lo stesso nome di tabl? O non è possibile?
Davos,

6
@Davos usa questo, mostra crea tabella database_name.tablename.
Fahad Anjum,

Grazie, questo è quello che volevo
astrosixer il

Ci sono argomenti che posso aggiungere per esportarlo in un file?
Dan.

40

Esegui SHOW CREATE TABLE <table name>query.


4
+1. Nota: se si esegue una query dalla riga di comando, ;è richiesto alla fine.
Ritenuto il

15

Mysqladmin può svolgere il compito di salvare lo script di creazione tabella.

Passaggio 1, crea una tabella, inserisci alcune righe:

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

Passaggio 2, utilizzare il comando dump mysql:

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

Passaggio 3, osservare l'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 */;

L'output è ingombra di un numero di token delle condizioni di esecuzione sopra e sotto. Puoi filtrarli se non li desideri nel passaggio successivo.

Passaggio 4 (Opzionale), filtrare i token delle condizioni di esecuzione extra in questo modo:

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

Che produce output finale:

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;

9

Esegui query è scheda sql

SHOW CREATE TABLE tableName

Clicca su

+ Opzioni -> Scegli testi completi -> Fai clic su Vai

Copia Crea query tabella e incolla il punto in cui desideri creare una nuova tabella.


Grazie per il suggerimento su come visualizzare il testo completo, non ero sicuro del perché fosse interrotto fino a quando non ho visto la tua risposta.
Dymas,

@Dymas devi scegliere il testo completo per mostrare la query completa. ho fatto lo stesso per vedere la query completa.
Samir Mangroliya,

7

Richiesta informazioni_schema.columns direttamente:

select * from information_schema.columns 
where table_name = 'your_table' and table_schema = 'your_database'

2

Questa potrebbe essere una risposta tardiva. Ma può aiutare gli altri. È molto semplice in MY SQL Workbench (sto usando Workbench versione 6.3 e My SQL versione 5.1 Community Edition): fare clic con il tasto destro del mouse sulla tabella per la quale si desidera creare lo script, selezionare l'opzione 'Copia negli Appunti -> Crea istruzione'. Basta incollare qualsiasi editor di testo per ottenere lo script di creazione.


0

Utilizzo della funzione PHP.

Ovviamente la funzione di query ($ this-> model) devi cambiare la tua.

/**
 * 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);
}

0

Ho trovato un altro modo per esportare la tabella nel file sql.

Supponiamo che il mio tavolo sia abs_item_variations

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

0

Esporta l'intero formato di selezione del database come SQL. Ora apri quel file SQL che hai scaricato usando notepad, notepad ++ o qualsiasi editor. Vedrai tutte le tabelle e inserirai le query del tuo database. Tutti gli script saranno disponibili lì.


-2

Un altro modo. Seleziona la tabella di destinazione nel pannello di sinistra in phpMyAdmin, fai clic sulla scheda Esporta, deseleziona Blocco dati e fai clic sul pulsante Vai.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.