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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:21:25+00:00 2026-05-20T07:21:25+00:00

I am currently working on a live search and I need to be able

  • 0

I am currently working on a live search and I need to be able to find parts of a name in two columns (we need to separate first and last name). I personally would like to keep the command short, however the only way I have been able to get this to work is:

User Searches For

John Doe

Generated SQL Query

SELECT * FROM users WHERE
(first_name LIKE '%john%' OR last_name LIKE '%john%') AND
(last_name LIKE '%doe%' OR last_name LIKE '%doe%');

The search field is one box so I do some simple separation by space. Most cases this won’t reach beyond three sets of clauses, was just wondering if there was any better way to do this.

NOTE:
I would like to be able to do partial matching. So I should be able to find John Doe if I look for “John Do”

SOLUTION
With the help of Rolando, I did however come up with a solution, posted for anyone else who finds this. Follow his instructions on how to create the index below, then run this:

SELECT * FROM users WHERE
(MATCH(first,last) AGAINST ('+john* +do*' IN BOOLEAN MODE))
  • 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-20T07:21:26+00:00Added an answer on May 20, 2026 at 7:21 am

    Your best bet here is create a FULLTEXT index that encompasses the two fields

    Step 1) Create a stop word file with just three word

    echo “a” > /var/lib/mysql/stopwords.txt
    echo “an” >> /var/lib/mysql/stopwords.txt
    echo “the” >> /var/lib/mysql/stopwords.txt

    Step 2) Add these options to /etc/my.cnf

    ft_min_word_len=2
    ft_stopword_file=/var/lib/mysql/stopwords.txt

    Step 3) Create FULLTEXT index on the first and last name columns

    ALTER TABLE users ADD FULLTEXT first_last_name_index (first,last);

    Step 4) Implement the MATCH function in your search

    Something Like This:

    SELECT * FROM users WHERE (MATCH(first,last) AGAINST (‘John’ IN BOOLEAN MODE)) AND (MATCH(first,last) AGAINST (‘Doe’ IN BOOLEAN MODE));

    Click here to Learn More about FULLTEXT indexing

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The cms I'm currently working with only supports live editing of data (news, events,
I'm currently working on a website that you'll find here: http://steadfastdesignfirm.com/rgw/ . I used
I am currently working on an Android application that needs to publish a live
Currently working on a script to ping every host on a /24 subnet, and
currently working on generation elliptic curve for ECDSA and met some problems: An elliptic
Currently working in the deployment of an OFBiz based ERP, we've come to the
Currently working on a VBScript to automate some of the dirty PST ingestion work
Currently working on a site built in Django and i'm getting an issue when
Currently working with NSURLConnection. Found a great website showing important delegate methods coming with
I currently working on an issue tracker for my company to help them keep

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.