excel create table from another table code example
Example: Create table from another table
CREATE TABLE new_table_name AS
SELECT *
FROM existing_table_name
WHERE 0
CREATE TABLE new_table_name AS
SELECT *
FROM existing_table_name
WHERE 0