Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のカテゴリがあります (多対多の関係):
+ post post_tag + tag post_category + category
カテゴリのない投稿にどのタグが含まれているかを確認する SQL クエリを作成するにはどうすればよいですか?
ありがとう!!!
select distinct pt.tagname from post_tag pt where not exists ( select * from post_category pc where pc.post_id = pt.post_id )