Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7410429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:13:59+00:00 2026-05-29T06:13:59+00:00

I have a sqlite3 full text search table defined like this: CREATE VIRTUAL TABLE

  • 0

I have a sqlite3 full text search table defined like this:

 CREATE VIRTUAL TABLE entries USING fts4 ( entry TEXT )

Each entry row has a line of text. How can I write a query to count the total amount of words in the table? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T06:14:00+00:00Added an answer on May 29, 2026 at 6:14 am

    I don’t know of a built-in function to do that, but you could re-use the answer to
    ” Query to count words SQLite 3 ” to get the total count of words:

    select sum(length(trim(entry)) 
            - length(replace(trim(entry), ' ', '')) + 1) from entries;
    

    (Modified the original answer by adding the trim.)

    If you have sqlite3 version 3.7.6 or later, you can do something cleaner with an fts4aux table.

    create virtual table terms using fts4aux(entries);
    select count(distinct term) from terms;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the fts4 extension of sqlite3 to enable full-text indexing and searching
I have an app using SQLite3. It's running pretty well, but I would like
I have the following table in a SQLite3 database: CREATE TABLE overlap_results ( neighbors_of_annotation
I have created a file named MyFile.db using SQLite3 from my C#.net application. This
im using QSQLite in Qt 4.8 and trying to do Full Text Search im
I would like to implement a full text search in an iPhone application. I
Using sqlite3, I have two tables: products, orders. I want to know how many
Given that I have a table with a column of TEXT in it (MySQL
I need to support full text search for a 10 mb document and wondering
I have values being cut off and would like to display the full values.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.