我有一张桌子:
table : resource
resource_id | name
------------------
1 | res1
2 | res2
table : type
type_id | name
---------------
1 | type1
2 | type2
table : action
action_id | name
-----------------
1 | read
2 | add
3 | edit
4 | delete
5 | disable
最后是他们的映射表
table : mapping
resource_id | type_id | action_id
------------------------------------
1 | 1 | 1
1 | 1 | 2
1 | 1 | 3
2 | 1 | 1
2 | 1 | 2
2 | 1 | 3
2 | 2 | 4
2 | 2 | 5
等。
现在我做了一个查询来获取:(循环遍历每个type_id)
对于type_id = 1,我得到了:
resource_id | type_id
---------------------
1 | 1
1 | 1
1 | 1
虽然我希望只获得一行
同样
for type_id = 2
我得到了:
resource_id | type_id
---------------------
2 | 1
2 | 1
2 | 1
2 | 2
2 | 2
虽然我希望只有2行:即
resource_id | type_id
---------------------
2 | 1
2 | 2
..等等
这是我的疑问:
$this->db->select ( 'p.resource_id, p.type_id' );
$this->db->from ( 'mapping p' );
$this->db->join ( 'resources r', 'p.resource_id = r.resource_id' );
$this->db->join ( 'type t', 'p.type_id = t.type_id' );
$this->db->where ( 'p.type_id', $typeId );
我也尝试过: (参考:http://ellislab.com/forums/viewthread/57781/)
$this->db->select ( 'DISTINCT p.resource_id, p.type_id' );
$this->db->from ( 'mapping p' );
$this->db->join ( 'resources r', 'p.resource_id = r.resource_id' );
$this->db->join ( 'type t', 'p.type_id = t.type_id' );
$this->db->where ( 'p.type_id', $typeId );
但是明显不起作用我得到: 您的SQL语法有错误;查看与MySQL服务器版本对应的手册,以获得正确的语法。
答案 0 :(得分:1)
在第一个查询中使用分组: 按resource_id分组,type_id
这将限制结果行的数量。