我上了3路樹工作在MySQL或父ID專門蛋糕的孩子的數量和我的表結構我怎樣才能得到1.3
+----+---------+-----------------------+
| id | user_id | leg_type|parent_user_id
+----+---------+-----------------------+
| 1 | 1011 | M |1000 |
| 2 | 1012 | L |1000 |
| 3 | 1013 | R |1000 |
| 4 | 1014 | M |1011 |
| 5 | 1015 | R |1011 |
| 6 | 1016 | M |1012 |
+----+---------+-----------------------+
現在我要搜索一個特定的ID讓說parent_user_id(1000)如何可以找到M,L和R
例如1000(M)= 1011,1014,1015 {3} 1000(L)= 1012,1016 {2} 孩子的數1000(R)= 1013 {1}
Array(
"1000"=>Array(
"M" => 3
"L" => 2
"R" => 1
)
)
任何優化的解決方案。我嘗試了一切,但不值得。
編輯:圖片可視化
後取其你嘗試,你認爲是最接近的。 – Dave