鬼ごっこ
tag_id tag post_id
--------------------------------
1 category1 1
2 category2 1
3 etc 2
4 category3 1
役職
post_id title
-------------
1 title1
title1
タグに含まれているので、どうすれば入手できますかcategory1
&&category2
何かのようなもの
SELECT TITLE
FROM post, tag
WHERE tag.post_id = post.post_id
AND tags.tag = 'category1','category2'