DEV Community

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

 
smartcodinghub profile image
Oscar

I mean something like:

posts

post_id other_value
1 something
2 something
3 something

tags

tag_id tag_text
1 tag1
2 tag2
3 tag3

post_tags

post_id tag_id
1 1
1 2
2 3
3 1
3 2
3 3