2015-10-16 148 views
-3

需要mysql中的分層查詢。介紹另一人記錄的人以及他們介紹的所有其他人。請幫幫我。我需要mysql中的分層查詢

| associate_id | associate_introducer_id | 
+---------------+---------------------------+ 
| 123   | 999999999    | 
| 234   | 123      | 
| 456   | 123      | 
| 431   | 234      | 
| 567   | 456      | 

如果用戶輸入123,則所有由123引入的記錄顯示以及還有子記錄。

+0

你試過了什麼? – prasun

+0

我不知道如何獲取這些記錄。我對此感到困惑 – ahmed

回答

0

你的問題還不清楚。也許你想更新所有記錄與associate_introducer_id與相同的ID到另一個ID?

UPDATE your_table_name 
SET associate_introducer_id = '1234' 
WHERE associate_introducer_id = '123'