Create a new table that contains all items that cost more than the average.
My previous queries:
CREATE VIEW AveragePrice AS SELECT * FROM Item
WHERE price > (SELECT AVG(price) FROM Item);
SELECT * FROM item
WHERE price > (SELECT AVG(price) FROM item);
Now I want to create table and insert same data as above to the new table in one query..mimer sql