Come posso generare uno script di creazione tabella per una tabella esistente in phpmyadmin?
Come posso generare uno script di creazione tabella per una tabella esistente in phpmyadmin?
Risposte:
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
Esegui SHOW CREATE TABLE <table name>
query.
;
è richiesto alla fine.
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;
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.
select * from information_schema.columns
where table_name = 'your_table' and table_schema = 'your_database'
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.
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);
}
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
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ì.