If I have a table with a row, can I insert into the same table “x” number of times making a copy of everything in the row except a few columns. Something along the lines:
INSERT INTO #tbl
(City, Region, Country)
SELECT
"Different city", Same region, Same country 5 times.
I am trying to do this without using a loop.
If you have the cities in a separate table, you should be able to do the following: