Om du vill kopiera data:
INSERT INTO newTable (col1, col2)
SELECT col1, col2 FROM otherTable
Om du vill kopiera tabellstrukturen:
Om du vill kopiera strukturen och data:
CREATE TABLE animals2 AS
SELECT *
FROM animals ;
Och om du vill kopiera strukturen (men inte alla kolumner) utan data:
CREATE TABLE animals2 AS
SELECT animal -- only the columns you want
FROM animals
WHERE FALSE; -- and no data