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 8125441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:49:03+00:00 2026-06-06T06:49:03+00:00

I have a table in sqlite db called [tblbook] with a column [authors]. What

  • 0

I have a table in sqlite db called [tblbook] with a column [authors]. What I am trying to do in the sql is to split the author values to firstname and the lastname and sort it on lastname. I did find this great code:

 SELECT substr(BookAuthor, 1, NULLIF(CHARINDEX(' ', BookAuthor) - 1, -1)) AS [FirstName],
   substr(BookAuthor, CHARINDEX(' ', BookAuthor) + 1, LEN(BookAuthor)) AS [LastName]
 FROM tblBook where _id=3

It works perfectly on MSSQL but sqlite doesn’t have the charindex function hence it fails.

Could anyone please be kind and advise me what should be the best approach to achieve this.

  • 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-06-06T06:49:06+00:00Added an answer on June 6, 2026 at 6:49 am

    Unfortunately this functionality is missing from SQLite:

    • http://www.sqlite.org/lang_corefunc.html

    • Index of substring in SQLite3?

    Maybe you can feed your custom string position function to SQLite using http://www.sqlite.org/c3ref/create_function.html

    But if you really need it, there is a complex, ineffective workaround:

    http://sqlfiddle.com/#!7/e03a4/3

    1: create a numbers table/view

    2: join authors to numbers table, and choose the MIN position of the space

    3: now you can split the names

    SELECT
      substr( name, 1, pos-1) AS first_name,
      substr( name,    pos+1) AS last_name
    FROM (
          SELECT
            author.name,
            numbers.x AS pos
          FROM       author
          INNER JOIN numbers
          WHERE substr( author.name, numbers.x, 1) = ' '
          GROUP BY author.name
         ) AS a
    ORDER BY last_name;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, so I have a (SQLite) table called log wherein one column (time) is
I have a local sqlite server. The SQL database only contains a table called
I have a SQLite table called posts . An example is shown below. I
I have a table in SQLite database of Android which has a column RANK
I have a simple SQLite table called message: sequence INTEGER PRIMARY KEY type TEXT
I have a SQLite table called Price like this: date, productId, price ---------------------- 20120601,
Hi all i have the following table called student in SQLite database. this is
I created a SQLite database via SQLiteManager. I have a table called Envelopes, and
I am creating a SQLite database for my iPhone projects. I have table called
I have a table called catory in my sqlite database that contains some pre

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.