I have 4 tables: question_tags, tags, questions and users.
Question structure is: q_id, q_title, q_content, q_date, q_author (id from users table).
Tags structure is: tag_id, tag_name, tag_description.
Question_tags structure is: id, tag_id, q_id.
I want ot list all questions and next to every question title to show and its tags. I've come up with this so far:
$this->db->join('users', 'q_author = users.id', 'left');
$this->db->order_by('q_id', 'desc');
$this->db->limit($per_page, $offset);
$query = $this->db->get('questions');
But have no ideas about the tags. (also I'm using CodeIgniter)
P.S. Every question can has more than one tag.
database table tags codeigniter-2
GROUP_CONCAT(tag_name)with a LEFT JOIN betweenquestion.q_id=question_tags.q_idand a JOIN wherequestion_tags.tag_id=tags.tag_idand aGROUP BY(q_id)(I could write the query in MySQL, but don't know how it's done in codeigniter). That'd return your info and a comma-separated list of tag names for each question. – mathematical.coffee Feb 23 at 12:31SELECT *, GROUP_CONCAT(tags.tag_name) FROM questions LEFT JOIN users ON q_author = users.id LEFT JOIN question_tags ON questions.q_id=question_tags.q_id LEFT JOIN tags ON questions.q_id = question_tags.q_id GROUP BY questions.q_id, but it returns all tags, not these for this question. Where is my mistake? – FakeHeal Feb 23 at 12:48LEFT JOIN(totags) should beON tags.tag_id = questions_tags.tag_id. – mathematical.coffee Feb 23 at 12:54SELECT * , GROUP_CONCAT( tags.tag_name ) FROM questions LEFT JOIN users ON q_author = users.id LEFT JOIN question_tags ON questions.q_id = question_tags.q_id LEFT JOIN tags ON tags.tag_id = question_tags.tag_id GROUP BY questions.q_id– FakeHeal Feb 24 at 9:02