Mysql
 sql >> Database >  >> RDS >> Mysql

Miglior struttura DB (MySQL):articoli che contengono tag preferiti

Quanto segue non è affatto esaustivo/definitivo, ma dovrebbe portarti nella giusta direzione.

Tabelle:

news
=====
id
title
text

tag
===
id
tag

tag_map
=======
tag_id
news_id

favorite_tags
=============
user_id
tag_id

Interrogazione

SELECT * 
FROM favorite_tags
JOIN tag_map ON favorite_tags.tag_id = tag_map.tag_id
JOIN news ON tag_map.news_id = news.id
WHERE favorite_tags.user_id = $userid