Hi RyanEK
No, unfortunately, that is not going to work.
If you take the example of:
insert into @temp select 2, 1, 1
insert into @temp select 3, 1, 2
insert into @temp select 5, 1, 3
insert into @temp select 6, 1, 3
insert into @temp select 7, 1, 4
insert into @temp select 8, 2, 3
insert...