If the destination table does not exist, create it first with a CREATE TABLE statement, then
copy rows into it with INSERT … SELECT. Alternatively, use CREATE TABLE … SELECT to
create the destination table directly from the result of the SELECT. For example, to create
dst_tbl and copy the entire contents of src_tbl into it, do this: