Hi Dear all, I have Query A and Query B, and I want to insert a new column to A from the exist column in B, here is my code:
"INSERT INTO A (col_3) VALUES (SELECT col_3 FROM B " & _
"WHERE A.id = B.id ;"
Please provide me the correct way to do that, thanks
"INSERT INTO A (col_3) VALUES (SELECT col_3 FROM B " & _
"WHERE A.id = B.id ;"
Please provide me the correct way to do that, thanks