我们如何使用 3 个模型在 cgridview 中完成以下查询结果。?
select a.id,
a.name,
b.group_id,
c.id,
c.client_id,
c.title
from users_phone_numbers a,
phone_number_group_assignment b,
client_groups c
where a.id = b.phone_number_id
and b.group_id=c.id;
请回复谢谢