So I have this query:
SELECT *
FROM `Nieuws`
INNER JOIN `Nieuws_tags` ON `Nieuws_tags`.`ID-Nieuws` = `Nieuws`.`ID`
INNER JOIN `Tags` ON `Tags`.`ID` = `Nieuws_tags`.`ID-tags`
WHERE Nieuws.ID = 1
Right now my output is:
What I need:
So I need one record where the "Beschrijving" (tag) stack up and not give me 2 records.
Someone told me about GROUP_CONCAT but I don't really know how to insert that if necessary.