I have a users table that looks someting like this :
ID NAME
1 Robin
2 Edward
3 Donald
4 Julie
The 2nd table user_tree
ID USER_ID TREE
1 1 ["2","3","4"]
2 2 ["3","4"]
3 3 ["4"]
4 4 []
The 3rd table orders
ID AMOUNT USER_ID
1 150 2
2 300 3
3 200 4
4 500 3
the expected result, get the following table (create table mlm_team as select..) with a SQL query
ID USER_ID TEAM_SUM
1 1 1150
2 2 1000
3 3 200
Is there an SQL expert who can help me?
Follow below step:
Explain here:
- Final Query here:
Find SQL Fiddle details from here LINK.