我有三张桌子:
Dim interfaces = NetworkInterface.GetAllNetworkInterfaces()
Dim json = JsonConvert.SerializeObject(interfaces, Formatting.Indented)
Console.WriteLine(json)
在这里,我想将关系表aauth_user: id,email,pass,name,banned,last_login
aauth_user_to_groups: user_id,group_id
aauth_groups: id,name,definition
与auth_user_to_groups
一起设置。
此处auth_groups
是基本表,auth_user
是关系表,auth_user_to_groups
是选择表
答案 0 :(得分:0)
试试这个:
SELECT *
FROM aauth_user_to_groups a
JOIN aauth_user b ON a.user_id = b.id
JOIN aauth_groups c ON a.group_id = c.id ;