December 19, 2017 at 12:15 pm
How about I point you here: http://www.sqlservercentral.com/articles/Tally+Table/72993/
December 19, 2017 at 2:02 pm
How about what is wrong with what I just submitted? The splitter function works for everything else at my company. I would like to know why it does not work for me.
I am suppose to use the splitter logic I should you since that is a company standard to use it.
December 19, 2017 at 2:37 pm
Not sure, the following works for me:
declare @ssGrade VARCHAR(8000) = 'PK,KG,01,02';
SELECT * FROM fn_splitString(@ssGrade);
Doing the insert into a temp table works as well.
December 21, 2017 at 6:23 pm
wendy elizabeth - Tuesday, December 19, 2017 2:02 PMHow about what is wrong with what I just submitted? The splitter function works for everything else at my company. I would like to know why it does not work for me.
I am suppose to use the splitter logic I should you since that is a company standard to use it.
It depends. Can you post the code for the fn_splitString function, please because there might actually be something very wrong with it, especially if it's the function I'm thinking of.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 22, 2017 at 4:31 am
Hmm.
What do you get from the following queries?
SELECT * FROM Enrollment WHERE Grade IN ('PK','KG','01','02')
SELECT Grade, COUNT(*) FROM Enrollment GROUP BY Grade
Thomas Rushton
blog: https://thelonedba.wordpress.com
December 22, 2017 at 5:07 pm
I was able to use your split function without issue based on what you posted. What is happening when you use it?
December 23, 2017 at 9:12 am
Jeff Moden - Thursday, December 21, 2017 6:23 PMwendy elizabeth - Tuesday, December 19, 2017 2:02 PMHow about what is wrong with what I just submitted? The splitter function works for everything else at my company. I would like to know why it does not work for me.
I am suppose to use the splitter logic I should you since that is a company standard to use it.It depends. Can you post the code for the fn_splitString function, please because there might actually be something very wrong with it, especially if it's the function I'm thinking of.
Ah... sorry... I missed where you've already posted it. If it were a snake, it would have bitten me.
As Lynn says,
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 7 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply