August 3, 2007 at 4:19 pm
August 3, 2007 at 8:26 pm
What was the question???? And, if you solved it, what was the answer???
--Jeff Moden
Change is inevitable... Change for the better is not.
August 4, 2007 at 4:55 pm
The magic of post editing...
N 56°04'39.16"
E 12°55'05.25"
August 4, 2007 at 5:01 pm
And the wonder of Google cache!
I was hoping somone could help. I need to count the number of words in a specfic column in a table if i didn'rtknow what the words said.
I can count the number of words using
DECLARE @String VARCHAR(4000)
SET @String = ' words to be counted'
SELECT LEN(@String) - LEN(REPLACE(@String, ' ', '')) + 1
AS Results
but this requires me to know what the words are.
N 56°04'39.16"
E 12°55'05.25"
August 4, 2007 at 5:29 pm
Wonder why Seric thought that technique required knowing what the words are?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply