I’ve got two tables:
TABLE A (columns: FirstValue, SecondValue, SeatNumber)
currently empty
TABLE B(1 column: SeatNumber)
Contains 300 rows with different numbers.
How do I populate TABLE A so that FirstValue and SecondValue are ‘1’ and ‘2’ respectively, but the SeatNumber is populated from TABLE B?
I’m assuming this can be done using “select into”.
Suggestions?
1 Answer