DEV Community

Discussion on: Best way to store array type data inside database?

 
mittalyashu profile image
Yashu Mittal • Edited

On using the INNER JOIN clause it doesn't get the data if specific post have multiple tag_id

image

SELECT
    *
FROM
    post
INNER JOIN tag
ON post.post_id = tag.post_id;

it only return the data for 3rd row according to the above image.

Thread Thread
 
flrnd profile image
Florian Rand
INNER JOIN tag

Can you see the mistake here?

You need to do the JOIN with the post_tags table (with both references, posts and tags) to work.

Thread Thread
 
mittalyashu profile image
Yashu Mittal

Yeah I know that,

I tried with the both with and without post_tag table, it was return 0 rows.