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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:25:44+00:00 2026-06-02T04:25:44+00:00

I can’t seem to figure out what’s wrong with my syntax for performing a

  • 0

I can’t seem to figure out what’s wrong with my syntax for performing a full join in mysql

select movies.title, genres.name    
from movies
full join genres_in_movies
on movies.id = genres_in_movies.movie_id
full join genres
on genres_in_movies.genre_id = genres.id
where movies.id = 12345;

Here are the relevant tables:

genres
id (pk)
name 

movies
id (pk)
title

genres_in_movies
genre_id
movie_id

I’m trying to get a table listing movies and their genres. A single movie may have multiple entries in the genres table, so I’m using a full join to get all the results I can without having to repeat the movies.title attribute in the final result.

I’m using mysql, if that makes any difference. The error I get complains about an error in my syntax around line 5.

EDIT:

Ok, well a sample output as is now:

Name    Genre
Batman  Action
Batman  Crime
Batman  Mystery

I want to get a table that would not hold 3 rows to hold this information, but instead have something like:

Title  Genre
Batman Action, Crime, Mystery

Or is that impossible?

  • 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-02T04:25:45+00:00Added an answer on June 2, 2026 at 4:25 am

    MySQL does not support FULL JOIN. You have to use a combination of left outer join and right outer join using a UNION clause.

    You can see an explanation here.

    Anyway, I don´t think a FULL JOIN will give you what you are trying to get.

    In order to avoid having more than one record for each movie, you should group by movie, but then you would have to do a group concat to show all the genres in a single record.

    Please provide a sample expected output for your query.

    Edit:

    select movies.title, GROUP_CONCAT( genres.name SEPARATOR ‘, ’ ) as 'genres'
    from movies
    inner join genres_in_movies on movies.id = genres_in_movies.movie_id
    inner join genres on genres_in_movies.genre_id = genres.id
    where movies.id = 12345
    group by movies.title;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone please help me figure out why my accordion script at http://www.mincovlaw.com/services/copyright gets
Can't figure out how to do this in a pretty way : I have
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can somebody tell me how to get mod_rewrite to rename this: our-work-section.php?id=3&title=something to our-work-section/something/3
Can't work out a way to make an array of buttons in android. This
Can anyone help me trying to find out why this doesn't work. The brushes
Can't seem to get the Back Button to appear in a UINavigationController flow. I
Can I open my custom developed form [instead of native one] when user opens
Can we set the alpha of drawable for its disable state through XML? For
Can anyone tell me how to hide the header in DevExpress gridcontrol..?? I'm using

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.