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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:03:54+00:00 2026-06-01T06:03:54+00:00

Lets take stackoverflow as an example: Post Postid Title Mess ————————————————– 1 Title1 This

  • 0

Lets take stackoverflow as an example:

Post

Postid          Title          Mess
--------------------------------------------------
1               Title1         This is a question
2               Title2         This is a question1
3               Title3         This is a question2
4               Title4         This is a question3
5               Title5         This is a question4
6               Title6         This is a question5

Tags

TagId     PostId     Name
-----------------------------
1         1              Tag1
2         1              Tag2
3         1              Tag3
4         1              Tag4
5         2              Tag5
6         3              Tag6
7         4              Tag7
8         5              Tag8
9         6              Tag9
10        3              Tag10

In this design how would I get all the questions with its associated tags in one query. is this even possible?

*Edit*

select t.*, p.* from Tags t
join post p on t.postid=p.postid

Something like this would give me all the tags for each question. But I don’t think this is efficient. What do you think.

  • 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-01T06:03:55+00:00Added an answer on June 1, 2026 at 6:03 am

    I think that your example is very weak. You shouldn’t have the tag name in the table you use to join posts and tags.

    You should have the following tables:

    • Posts: PostId, Title, Mess
    • Tags: TagId, Name
    • Posts_Tags: PostId, TagId

    If you don’t do this then you’ll have many equal tag names when 2 posts have the same tag, do you see?

    Now, in order to query these tables and get all questions with the associated tags you should do the following:

    select * from posts p
    join posts_tags pt on p.postId = pt.postId
    join tags on pt.tagId = t.tagId
    

    You can say it is less efficient but you’re not considering data duplication in your example, which may cause serious errors.

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

Sidebar

Related Questions

I have a webpage, lets take for example StackOverflow. every box looks like this:
I have a very basic question. Lets take this snippet: #include <stdio.h> void foo(void)
lets take this example <class name=Product> <id name=serialNumber column=productSerialNumber/> <property name=category column=category /> <set
Lets take the standard example class Author(models.Model): name = models.CharField(max_length=100) class Book(models.Model): title =
Lets take the standard example class Author(models.Model): name = models.CharField(max_length=100) class Book(models.Model): title =
Lets take StackOverflow questions as example. Each of them has multiple tags assigned. How
I see this quite a bit with online apps. Lets take, for example, the
I have an issue with an SQL Query. Lets take this example data itemID
Is it possible to generate comments for closing div tags, lets take this ex.
I wanna read feed entries and I'm just stuck now. Take this for example

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.