Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Problem with parameterized query

    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...

  • RE: Removing Repeating Data From a Fuzzy Match Result

    I think with the below query the desired result can be achieved.

    select b1.Name,b1.SuggestedName
    from (
        select *, row_number() over(order by name)as 'slno'
        From Bikes )as b1

Viewing 2 posts - 1 through 2 (of 2 total)