Jump to content

[SOLVED] Help with concat in query


Darkmatter5

Recommended Posts

Here's the query I have so far

 

SELECT g.game_id, g.title, s.name

FROM games AS g

Inner Join game_systems AS gs ON gs.game_id = g.game_id

Inner Join systems AS s ON s.system_id = gs.system_id

WHERE g.admin_approved =  '0'

ORDER BY g.title ASC, gs.game_id ASC, s.name ASC

 

Here's the current result

game.id title                      systems

49        Bionic Commando PC

49        Bionic Commando Playstation 3

49        Bionic Commando Xbox 360

51        Bionic Commando Wii

52        Bionic Commando Nintendo DS

 

I'm wanting to list each title grouped together, but concat the systems together to something like this.

game.id title                      systems

49        Bionic Commando      PC, Playstation 3, Xbox 360

 

How can I do that?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.