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

  • Home
  • SEARCH
  • 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 7621819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:17:30+00:00 2026-05-31T04:17:30+00:00

I am using this basic mySQL query which works great: $sql = SELECT *

  • 0

I am using this basic mySQL query which works great:

$sql = "SELECT * FROM `clients` WHERE 
        MATCH(`LNAME`) AGAINST('$c')  OR
        MATCH(`FNAME`) AGAINST('$c')  OR
        MATCH(`MAIL`) AGAINST('$c')  OR
        MATCH(`TEL`) AGAINST('$c')  " 

where $c is the search query. Now this works with all single words/numbers but whenever I add 2 words no results are returned.

For example, if my database has aaaa bbbb in LNAME and I search for “aaaa bbbb” I get nothing back, however when I search for “aaaa” or “bbbb” it does work. I tried adding IN BOOLEAN MODE but it doesn’t make a difference.

Could ayone explain to me how this works? $c is composed of letters, numbers and/or a @

thanks a lot.

  • 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-31T04:17:32+00:00Added an answer on May 31, 2026 at 4:17 am

    First , you should use MATCH AGAINST like this:

    $sql = "SELECT * FROM `clients` WHERE MATCH(`LNAME`,`FNAME`,`MAIL`,`TEL`) AGAINST('$c')"
    

    Please notice:

    Short words are ignored, the default minimum length is 4 characters.
    You can change the min and max word length with the variables
    ft_min_word_len and ft_max_word_len

    and:

    If a word is present in more than 50% of the rows it will have a
    weight of zero. This has advantages on large datasets, but can make
    testing difficult on small ones.

    You can use LIKE and it probably will have better results.
    Example of usage:

    $sql = "SELECT * FROM `clients` WHERE `LNAME` LIKE '%$c%' OR `FNAME` LIKE '%$c%' OR ..."
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a basic MySQL query: $getFeed = SELECT posts.postID, posts.postTitle, ..... FROM posts
The basic table schema looks something like this (I'm using MySQL BTW): integer unsigned
I often see something similar to this below in PHP scripts using MySQL query(SET
I'm using the following mysql query to return some data from my database. Currently
I've created this basic 3D Demo using OpenGL/SDL. I handled the keyboard callback so
Perhaps someone can help me out with this one: I'm using a basic search
i'm using this example implementation found at http://tangentsoft.net/wskfaq/examples/basics/select-server.html This is doing most of what
Using this code to zip a folder and it works perfect on small files
I'm writing a basic message-script in PHP/MySQL but I'm stuck at a database query
I'm trying to execute a basic INSERT statement on a MySQL table from a

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.