Feb 10, 2017
Sqlite: how to count words in a field
Assuming a table like this:
create table test (id integer primary key autoincrement, name text);and values like:
insert into test values (null, "test") ;insert into test values (null, "word1 word2 word3") ;
insert into test values (null, "word4 word5 word6") ;
insert into test values (null, "word7 word8 word9 word10 word11 word11") ;
here is the result:
select id, name from test1;test
2;word1 word2 word3
3;word4 word5 word6
4;word7 word8 word9 word10 word11 word12
Counting
Now you want to count the word(s) in the field "name" - here is how to proceed:select (length(name)-length(replace(name," ","")))+1 as wordcount, name from test
it works because the query is looking for the number of space - a space means a new word is in the field and that is why you need to add 1 to the total.
Sqlite is awesome
Subscribe to:
Post Comments (Atom)
Popular Posts
-
What is it lately, this unexplainable need to change everything that works ? What about this idiom " if it ain't broke, don't ...
-
Hannah Wagner (better known by her stage name Miss Hannah Minx; born Oct. 1990) is an American vlogger known on Youtube for her Kawaii ...
-
After I gave a shot at ArtRage2 bundled with the Wacom tablet, I took the other cd that was in the box - and installed .... Photoshop Eleme...
2 comments:
Thank you! this worked for me!
Do we know how to count words with the same length in a text?
Post a Comment