-
-
Save zhaoxiaobao/2a01ceb6f48661a3017e1b37f54a0419 to your computer and use it in GitHub Desktop.
sql 几条sql查询出此结果
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
表1 group表 | |
id group_name | |
1 g1 | |
2 g2 | |
表2 list表 | |
id name group_id | |
1 n1 1 | |
2 n2 1 | |
3 n3 2 | |
查询结果 | |
[{ | |
group_name:g1, | |
group_list:[{ | |
id:1, | |
name:n1 | |
},{ | |
id:2, | |
name:n2 | |
}] | |
},{ | |
group_name:g2, | |
group_list:[{ | |
id:3, | |
name:n3 | |
}] | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment