I need to create a simple query that selects a few fields from a table, and appends them to another table.
No big deal, right?
INSERT INTO Table2 ( FieldOne, FieldTwo )
SELECT Table1.FieldOne, Table1.FieldTwo
FROM Table1;
BUT, I also need to append values into a third field that just number...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.