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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:59:55+00:00 2026-05-20T00:59:55+00:00

Search Term a: black small rock Search Term b: black rock small Search Term

  • 0
  • Search Term a: black small rock
  • Search Term b: black rock small
  • Search Term c: small rock black

I want to design a query that will take the order in which the terms are written into account. Now I’d like the above three terms to produce the same results, but I want order of the results to reflect the sequence of the terms.

I only hope this makes sense; please let me know if it doesn’t.

  • 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-20T00:59:56+00:00Added an answer on May 20, 2026 at 12:59 am

    The only way I can see this working is if you are separating the search terms as attributes, in the database table, in those specific order.

    • Attribute 1: black
    • Attribute 2: small
    • Attribute 3: rock

    In which case, the query for your first search term “black small rock” would match “black” in Attributes 1, 2, or 3 and then perform the same logical-or operation for the other two fields in the search term.

    Your query, would actually be rather simple:

    SELECT * FROM table
    WHERE (attr1 = 'black' OR attr2 = 'black' OR attr3 = 'black')
    AND (attr1 = 'small' OR attr2 = 'small' OR attr3 = 'small')
    AND (attr1 = 'rock' OR attr2 = 'rock' OR attr3 = 'rock');
    

    At which point, you rely on the logic in the programming language you are issuing this query from to order the displayed data by search term, where you test the first attribute (Python-like pseudocode):

    search_terms = split(search_term, " ")
    ordered_results = [
       [x for x in results if x["attr1"] == search_terms[0]],
       [y for y in results if x["attr2"] == search_terms[1]],
       [z for z in results if z["attr3"] == search_terms[2]]
    ]
    for result_set in ordered_results:
       for r in result_set:
          # Display the result.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've want to match any occurrence of a search term (or list of search
I created a div(search result term bar) which should display only when user enters
I have a list with numerous Items. I want to search for a term
I have a form which lets the user enter their search term and it
i'm trying to search terms that may or may not have a space... ex
I was wondering what the filter was to change the search term in Wordpress?
How do you search for a term in multiple columns: title , content .
jQuery UI Autcomplete: How can I POST the term to the search script instead
I have a search form. I would like when someone type the term, first
Note: In this question I'm using the term autocomplete (or iterative search) to refer

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.