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

The Archive Base Latest Questions

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

I have a table called Articles . I also have a table for Tags

  • 0

I have a table called Articles. I also have a table for Tags. The tags table actually has 2 separate tables as its a many-to-many relationship between Articles and Tags. For example:

CREATE TABLE Articles (
    id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT
    title VARCHAR(255),
    author INT UNSIGNED NOT NULL,
    body TEXT NOT NULL -- column type may not be representative
) Engine=InnoDB;

CREATE TABLE Tags (
    id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
    name VARCHAR(32)
) Engine=InnoDB;

CREATE TABLE Article_Tags (
    article INT UNSIGNED NOT NULL,
    tag INT UNSIGNED NOT NULL,
    FOREIGN KEY (article) REFERENCES Articles (id),
    FOREIGN KEY (tag) REFERENCES Tags (id)
) Engine=InnoDB;

Now, is it possible to do a single query to return an article, and also all the tags related to that article from the Tags table in the same query?

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

    As per comments, you typically use a JOIN statement to combine related records from multiple tables.

    Note that I assume that

    • Articles has an ID column
    • Article_Tags has an ArticleID and TagID column
    • Tags has an ID column

    If the actual column names differ, you should replace the corresponding columns in my statement with their actual names.

    SQL Statement

    SELECT *
    FROM   Articles a
           INNER JOIN Article_Tags at ON at.ArticleID = a.ID
           INNER JOIN Tags t ON t.ID = at.TagID
    

    More information about the JOIN syntax

    SQL joins are used to query data from two or more tables, based on a
    relationship between certain columns in these tables

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

Sidebar

Related Questions

I have a table called BlogPost which has a 1-to-many relationship with the Comment
Lets say I have a table in MySQL called articles, that has a column
I have a table called ApprovalTasks... Approvals has a status column I also have
I have a Model called Section which has many articles ( Article ). These
I currently have a database with two tables called Articles and Tags . In
I have a table articles , another tags , and a third called article_tags
I have a table called Orderrow. Orderrow has a a compound primary key (CPK)
I have tables, 1 called articles and another called links. I want to take
I have a table called Articles. it includes the following field: ArticleIndex, ArticleLevel, ArticleParentIndex.
I have a table called Tickets with id, name. and a table called Articles

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.