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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T23:57:22+00:00 2026-05-20T23:57:22+00:00

How can you join these 5 tables together: tag: id, name author: username, id

  • 0

How can you join these 5 tables together:

tag: id, name
author: username, id
thread_tags: thread_id, tag_id
thread: id, content
author_threads: author_id, thread_id

(I also have a table called author_tags (tag_id, author_id), but I dont think thats needed here).

I want to select all the threads which are tagged a certain tag and their authors.

The following code returns #1066 - Not unique table/alias: 'tag'

SELECT thread.content, author.username
FROM tag
JOIN thread_tags ON thread.id = thread_tags.thread_id
JOIN tag ON thread_tags.tag_id = tag.id
JOIN author_threads ON author.id = author_threads.author_id
JOIN author ON author_threads.thread_id = thread.id
WHERE tag.name = 'arsenal'

EDIT:

This works:

SELECT thread.content
FROM tag
JOIN thread_tags ON tag.id = thread_tags.tag_id
JOIN thread ON thread.id = thread_tags.thread_id
WHERE tag.name =  'tagged'
LIMIT 0 , 30

However whenever I try to join authors with their threads, it throws #1066 errors.

  • 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-20T23:57:23+00:00Added an answer on May 20, 2026 at 11:57 pm

    You have joined the tag table twice, (thus the error) and haven’t joined the thread table.

    SELECT thread.content, author.username
    FROM tag
      JOIN thread_tags
        ON tag.id = thread_tags.tag_id
      JOIN thread                                  --join thread (not tag again)
        ON thread.id = thread_tags.thread_id
      JOIN author_threads
        ON author_threads.thread_id = thread.id     --error here too, in your query
      JOIN author
        ON author.id = author_threads.thread_id     --error here too, in your query
    WHERE tag.name = 'arsenal'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 tables that I need to join, these join together fine using
In Vim, one can join two lines by typing capital J. However, these are
Ok so I know we can join tables 'across' in MySQL to tables using
Can i join two tables using LINQ for NHibernate like I can do in
How can I join 2 Point3f arrays together? I have tried this but it
According to the release notes of Eclipse 3.3 you can now join lines together
I'm trying to join some tables together in MySQL, but I seem to get
I'd like a query that at its simplest will join 2 tables together with
After spending a few months pondering how i was going to JOIN tables together
I have two tables, Foo and Bar, I'd like to join them together so

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.