所以我基本上有一个看起来像这样的数据库:
card_types
id description price
1 Card1 1.00
2 Card2 2.00
3 Card3 3.00
card_occasions
id occasion
1 birthday
2 graduation
3 thank you
4 other
type_occasions
ID TypeID OccasionID
1 1 1
2 1 2
3 1 4
4 2 3
我正在尝试使用WHERE card_type.ID = 1进行内部连接,从而产生类似的输出,但我不知道从哪里开始。
示例输出:
card_occasion.ID card_occasions.Name
1 birthday
2 graduation
4 other
任何帮助,将不胜感激。谢谢。