我在 MySql 中有三个表。表 1 有以下字段
表格1:
EventType
-etid
-description
表 2:
EventAsks
-etid
-qid
表3:
Questions
-qid
-textofquestion
如果我有一个特定的 etid,并且我想找到该事件要求的所有问题。因此,鉴于下表...
EventType
etid description
1 hiking
2 biking
EventAsks
etid qid
1 1
1 3
2 2
2 3
Questions
qid textofquestion
1 Is it fun?
2 Is it lots of exercise
3 Is it expensive
因此,给定 etid 的结果说 etid=1,我希望返回与 etid=1 相关的问题...
Result
Is it fun?
Is it expensive?
我确定这与加入有关,但我不知道具体该怎么做?有什么建议么?