如何解决此CRUD set_relation_n_n问题

时间:2015-12-19 07:35:15

标签: codeigniter

我有三张桌子:

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是选择表

1 个答案:

答案 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 ;