Viewing post 1 (of 1 total)
Another one CTE solution:
with
fruit ([value], )as (
select cast('Apple' as nvarchar(max)) , 101 union all
select 'Banana' , 102 union all
select 'Orange'...
March 4, 2011 at 6:03 am
#1294600