How can I insert data from a query into a table that already exists. I have tried using the insert into command but it seems to add the data from the query into the appropriate column but below blank rows.
table1 before sql statement:
col1 col2
data1
data2
data3
After following sql statement:
INSERT INTO table11 (col2) SELECT (col2) FROM query1
col1 col2
data1
data2
data3
stuff1
stuff2
stuff3
I would like to see the sql statement form the following
col1 col2
data1 stuff1
data2 stuff2
data3 stuff3
Thanks in advance
table1 before sql statement:
col1 col2
data1
data2
data3
After following sql statement:
INSERT INTO table11 (col2) SELECT (col2) FROM query1
col1 col2
data1
data2
data3
stuff1
stuff2
stuff3
I would like to see the sql statement form the following
col1 col2
data1 stuff1
data2 stuff2
data3 stuff3
Thanks in advance