SQL Dialects Reference/Write queries/Save results from select query as new table

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

[edit] Save results from select query as new table

SELECT columns INTO new_table FROM table
CREATE TABLE new_table [AS] SELECT columns FROM table
  • Linter
CREATE TABLE new_table AS SELECT columns FROM table