sql >> Database teknologi >  >> RDS >> Mysql

mysql kopiere kolonnedatatypen til en anden tabel

Hvis du ønsker at kopiere dataene:

INSERT INTO newTable (col1, col2) 
SELECT col1, col2 FROM otherTable

Hvis du ønsker at kopiere tabelstrukturen:

Dokumentation

Hvis du vil kopiere strukturen og dataene:

CREATE TABLE animals2 AS 
SELECT *
FROM animals ;

Og hvis du vil kopiere strukturen (men ikke alle kolonner) uden data:

CREATE TABLE animals2 AS 
SELECT animal                -- only the columns you want
FROM animals 
WHERE FALSE;                 -- and no data



  1. At have Timeout for at få en forbindelse efter opgradering af Knex

  2. WHERE-sætning i INSERT-sætning ved hjælp af mysql/php

  3. Versionering af SQL Server-database

  4. Erstat unicode-tegn i PostgreSQL