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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:45:22+00:00 2026-05-12T08:45:22+00:00

How can you select question_id and tag s for a question when one of

  • 0

How can you select question_id and tags for a question when one of the tags is known?

I am building a tag-search which searches questions by one tag such that the result shows the question and its tags including the one which was used in the search.

I use the same tables as in this question.
They are

Tables

questions          |     tags
-------------------|-----------------
  question_id      |     tag
  title            |     question_id
  was_sent_at_time |

The query

    SELECT question_id, tag
    FROM tags
    WHERE question_id IN 
    ( 
        SELECT question_id
        FROM questions
        ORDER BY was_sent_at_time
        DESC LIMIT 50
    )
    AND tag = $1;          // Problem here   

The problem with this query is that it does not show other tags assigned to the question.
It may be possible to get the question_id and tags if there exists a given tag.

  • 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-12T08:45:22+00:00Added an answer on May 12, 2026 at 8:45 am
        SELECT TOP 50 q.question_id, q.title, t.tag
        FROM tags t
        INNER JOIN questions q
        ON t.question_id = q.question_id
        WHERE q.question_id IN 
        ( 
            SELECT tin.question_id
            FROM tags tin
            WHERE tin.tag = $1
        )
       ORDER BY q.was_sent_at_time DESC
    

    That answers your question (if I understood it correctly), but I think you will have too much duplicate data – you don’t really want the question title repeated for each tag. So you should break it out into 2 result sets:

        SELECT TOP 50 q.question_id, q.title
        FROM questions q
        WHERE q.question_id IN 
        ( 
            SELECT tin.question_id
            FROM tags tin
            WHERE tin.tag = $1
        )
       ORDER BY q.was_sent_at_time DESC
    

    and:

      SELECT t.question_id, t.tag
        FROM tags t
        WHERE t.question_id IN 
        ( 
            /* 
           SAME SQL AS ABOVE WITH SELECT q.question_id, 
           OR SELECT FROM A TEMP TABLE THAT ABOVE WAS SAVED TO
           */
        )
       ORDER BY t.question_id
    

    Then when you build your page or whatever, you would bring them together.

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

Sidebar

Related Questions

No related questions found

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.