很抱歉这个简约的标题,但我不知道如何简短地描述它。我有三张桌子:
分组表
ID | Genre
-----------------
1 | Action
2 | Adventure
3 | Drama
多对多表
GroupID | ElementID
-----------------
3 | 1
1 | 2
2 | 2
2 | 3
3 | 3
和元素表
ID | Element
-----------------
1 | Pride and Prejudice
2 | Alice in Wonderland
3 | Curious Incident Of A Dog In The Night Time
一切都很好而且非常简单。我想要实现的 SELECT 如下
ID | Element | Genre
-------------------------------------------------------------
1 | Pride and Prejudice | Drama
2 | Alice in Wonderland | NULL
3 | Curious Incident Of A Dog In The Night Time | Drama
我想从表 Elements 中选择所有元素并将流派字段设置为Drama或null。
我正在尝试在MySQL中执行此操作。
先感谢您