Viewing 2 posts - 1 through 3 (of 3 total)
Thank for answering
Is there a way without using CLR?
July 17, 2012 at 9:58 am
#1513689
one option is:
Select a.Field, a.Field_1 FROM Table_1 a left join Table_2 b
on (a.Field = b.Field and a.Field_1 = b.Field_1)
left join Table_3 c
on (a.Field = c.Field and a.Field_1...
July 13, 2012 at 4:12 pm
#1512736