Quantcast
Browsing all 4 articles
Browse latest View live

Answer by KenJ

If it is passing in the single quotes between the items, try changing the delimiter you're splitting on to account for the extra single quotes: `Split(@Month, ''',''')`

View Article


Answer by ThomasRushton

Try this: split('''jan'',''feb'',''march''', ',') The problem is that your string is built up with 's, and that's also the string delimiter. So you need to escape (by doubling) those quotes within the...

View Article


Answer by KenJ

If it is passing in the single quotes between the items, try changing the delimiter you're splitting on to account for the extra single quotes: `Split(@Month, ''',''')`

View Article

Answer by ThomasRushton

Try this: split('''jan'',''feb'',''march''', ',') The problem is that your string is built up with 's, and that's also the string delimiter. So you need to escape (by doubling) those quotes within the...

View Article
Browsing all 4 articles
Browse latest View live