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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:27:43+00:00 2026-05-12T18:27:43+00:00

What I need to do is searching from companies and tags table and listing

  • 0

What I need to do is searching from companies and tags table and listing companies.

My table structure is as follows;

tags (tag_ID, tag)
tag_relation (tag_ID, company_ID)
companies (company_ID, company_name, company_description)

The query should be able to search both company info (name, description) and tags. If tag searched, related companies should return.

  • 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-12T18:27:43+00:00Added an answer on May 12, 2026 at 6:27 pm

    Assuming that you want to run “like” searches you could use the code below. If you have very large tables the performance may be pretty bad because the wild cards will prevent the use of indexes.

    select     companies.company_id, companies.company_name, companies.company_description
    from       companies
    inner join tag_relation
    on         companies.company_id = tag_relation.company_id
    inner join tags
    on         tags.tag_id = tag_relation.tag_id
    where      companies.company_name like '%something%'
    or         companies.company_description like '%something%'
    or         tag.tag like '%something%'
    group by   companies.company_id, companies.company_name, companies.company_description
    order by   companies.company_name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to select the enum values of a column. From searching I've found
My App is having a search bar for searching records from the table view,which
I need to parse through a file(built from a string) searching for occurences of
I need to return data from two tables - one table contains records on
I need to make efficient d-dimensional points searching and also make efficient k-NN queries
I need to create an array by searching a string for occurrences of '['
I have a file and searching mutiple value i.e I need to search {Name,Class}
After searching online and reading the Oracle documentation for this, I need some help
hi i need to have a graph in my html page after searching for
I need a query to search phone number. Simple searching is fine, but I

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.