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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:32:30+00:00 2026-06-08T15:32:30+00:00

I need to return all items from ‘t’ (thread) that include ‘menu_item_id’ = 1.

  • 0

I need to return all items from ‘t’ (thread) that include ‘menu_item_id’ = 1.

In addition, I need to filter all the above results based on f.tag.

SELECT t.*, u.username AS owner, uu.username AS replyname, a.location
FROM thread t
INNER JOIN filter_thread as ft ON t.thread_id = ft.thread_id
INNER JOIN filter as f ON f.filter_id = ft.filter_id
INNER JOIN users u ON t.owner_id = u.id 
INNER JOIN users uu ON t.last_post_id = uu.id
INNER JOIN user_profiles AS up ON u.id = up.user_id
INNER JOIN avatars AS a ON up.avatar_id = a.id
WHERE t.menu_item_id='1'
AND f.tag LIKE '%hello%'
OR f.tag LIKE '%world%'

problem area: AND f.tag LIKE '%hello%'
OR f.tag LIKE '%world%'

The important thing to realize is that ‘hello’ and ‘world’ might not always be in the query. In addition, there might be 3 more searches tacked onto it, however, the menu_item_id will always be searched for.

I don’t want all the results to require each of the f.tags, i just want to the results to contain any of them (OR).

Any help would be appreciated.

  • 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-08T15:32:31+00:00Added an answer on June 8, 2026 at 3:32 pm

    Use parenthesis to specify the precedence of the AND and OR.

    a AND (b OR c)
    

    vs.

    (a AND b) OR c
    

    For example:

    WHERE t.menu_item_id='1'
      AND (    f.tag LIKE '%hello%'
            OR f.tag LIKE '%world%'
          )
    

    This will return only rows that have menu_item_id = ‘1’ AND which have tag containing either ‘hello’ or ‘world’.

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

Sidebar

Related Questions

In ASP.NET Application. I need to return string (which contains all necessary html tags)
I need to write a query that returns all object less that or equal
I'm struggling with a css selector. I need a css rule that returns all
In a shell-script (or Perl) I need a subroutine that returns for all my
Basically, the question says it all. I need a PL\SQL query that returns a
I need to return a list of counties, but I need to filter out
I need to return server time from a webservice. I've got the following code:
My web application needs to get the results of all the items which have
I need help designing a query that will be used to return a website's
I wrote this function to filter a list to show all items after 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.