...all
select 2, 15, 10, 5, 15 union all
select 3, 25, 12, 35, 18 union all
select 4, 25, 20, 35, 25 union all
select 5, 45, 25, 15, 30
select * from #tblTest
SELECT IDENTITY(INT, 0, 1) AS RowID,
s.ID,
s.Price_in
INTO #Bx
FROM #tblTest AS s
inner join UTIL_NUMS AS V...