Viewing 2 posts - 1 through 2 (of 2 total)
You can use the below query directly if you are using the latest version as it Microsoft implemented STRING_SPLIT() built-in function which converts a string into rows as per the...
September 15, 2017 at 2:47 am
#1959551
I think with the below query the desired result can be achieved.
select b1.Name,b1.SuggestedNamefrom ( select *, row_number() over(order by name)as 'slno' From Bikes )as b1
September 1, 2017 at 2:04 am
#1957787