這裏的情況,我有3個看起來像這樣的表。我可以做多個SQL請求作爲一個請求
table foo
type number
a 1
b 2
c 3
d 4
table bar
number shape
1 square
2 circle
3 triangle
4 rectangle
table foobar
shape colour
square red
circle green
triangle blue
rectangle yellow
triangle purple
他們都有獨特的ID,我沒有列出。
我有類型,但我想找到顏色。現在我可以做三個SQL請求來獲取它,但是由於SQL可能是瓶頸,所以我想知道是否可以將三個SQL請求合併爲一個請求。
是否有可能做到這一點,將它跑得比三個獨立的SQL請求
1將返回紅色和3將返回藍色和紫色。
你能告訴我們你想要輸出的例子嗎? –
也許如果你解釋你想要做的3個請求,將更容易回答你的問題。 – Johanna