total_time_driven_at_this_trip
の値が一意の一意のユーザーIDを取得するのにuser_id
に基づいて属している別のテーブルからuser_name
を取得するにはどうすればよいですか?Cakephp DISTINCT
私は
$this->set('tripNsws', $this->TripNsw->find('all',array('limit' => 20,'fields' => array('DISTINCT(TripNsw.user_id)','TripNsw.total_time_driven_at_this_trip'),'group' => array('TripNsw.user_id') ,'order' => array('TripNsw.total_time_driven_at_this_trip desc'))));
...これを試してみましたが、それは働いていません。正しいsyntaxisがある
SELECT DISTINCT(user_id),`total_time_driven_at_this_trip` FROM `trip_nsws` order by `total_time_driven_at_this_trip` desc
- まったく – mark