You can do it like this:
CREATE TABLE tablename SELECT * FROM othertable;
tablename
is the name of the new table you want to create, SELECT * FROM othertable
is the query that returns the data the table should be created from.
You can do it like this:
CREATE TABLE tablename SELECT * FROM othertable;
tablename
is the name of the new table you want to create, SELECT * FROM othertable
is the query that returns the data the table should be created from.