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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:57:03+00:00 2026-06-12T15:57:03+00:00

I have a table with two fields candidate_id and keyword_id. I needs to list

  • 0

I have a table with two fields candidate_id and keyword_id. I needs to list all the candidates/candidate_id having keyword_id 5 and 6. Somebody please help me to write a single mysql query for this please.

  • 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-12T15:57:04+00:00Added an answer on June 12, 2026 at 3:57 pm

    An option that is simple to adapt to more than just two keyword_id’s would be…

    SELECT
      candidate_id
    FROM
      yourTable
    WHERE
      keyword_id IN (1,2)
    GROUP BY
      candidate_id
    HAVING
      COUNT(DISTINCT keyword_id) = 2
    

    An alternative could be…

    SELECT
      k1.candidate_id
    FROM
      yourTable  AS k1
    INNER JOIN
      yourTable  AS k2
        ON k1.candidate_id = k2.candidate_id
    WHERE
          k1.keyword_id = 1
      AND k2.keyword_id = 2
    

    It should be noted, however, that neither of these options scales very well (as you increase the number of candidates, keywords, and number of keywords that you search for.

    How to deal with this poor scaling totally depends on your data, and your needs. It’s too broad and subjective a topic to discuss in a SO answer.

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

Sidebar

Related Questions

I have a table in sql having two fields 'JOB_NUMBER' 'SRno', the relation between
I have one table that has two fields - ID1 and ID2 ID1 can
I have a table, myTable that has two fields in it ID and patientID
I have a table with two decimal(18,0) fields. I am inserting into this table,
I have a query which searches two separate fields in the same table... looking
I have a table, called Prices composed of a few fields, two of which
I have two tables with exactly the same fields. Table A contains 7160 records
So I have two tables. Table 1 is named 'appointment' with the following fields:
I have two tables: Folder, Files. Each table has 4 fields: ParentID, ID, Name,
I have a table with two fields of interest for this particular exercise: 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.