↧
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 ArticleAnswer 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