I want to insert data from 2 tables into a 3rd table. Here's an example.
insert into Table3(n1,n2,n3)
values ('jack','mary','billy')
insert into Table3
select * from Table1 where city='charlotte'
====
How do I combine these two insert statements into one?