Hvis du ønsker at kopiere dataene:
INSERT INTO newTable (col1, col2)
SELECT col1, col2 FROM otherTable
Hvis du ønsker at kopiere tabelstrukturen:
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