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;
plz返信ありがとう