postgresql7.2 SELECT distinct t.item_id as task_item_id, t.parent_id as project_item_id, t.title, to_char(t.end_date,'YYYY-MM-DD HH24:MI:SS') as end_date, to_char(t.earliest_start,'YYYY-MM-DD HH24:MI:SS') as earliest_start, t.earliest_start - current_date as days_to_earliest_start, to_char(t.earliest_start,'J') as earliest_start_j, to_char(t.earliest_finish,'YYYY-MM-DD HH24:MI:SS') as earliest_finish, t.earliest_finish - current_date as days_to_earliest_finish, to_char(t.latest_start,'YYYY-MM-DD HH24:MI:SS') as latest_start, t.latest_start - current_date as days_to_latest_start, to_char(t.latest_start,'J') as latest_start_j, to_char(current_date,'J') as today_j, to_char(t.latest_finish,'YYYY-MM-DD HH24:MI:SS') as latest_finish, t.latest_finish - current_date as days_to_latest_finish, to_char(t.end_date,'YYYY-MM-DD HH24:MI:SS') as end_date, t.end_date - current_date as days_to_end_date, t.percent_complete, t.estimated_hours_work, t.estimated_hours_work_min, t.estimated_hours_work_max, t.actual_hours_worked, s.status_type, s.description as status_description, t.is_lead_p, t.is_observer_p, t.priority, t.party_id, p.title as project_name FROM (select tr.item_id, ta.party_id, ta.role_id, tr.title, tr.end_date, tr.earliest_start, tr.earliest_finish, tr.latest_start, tr.latest_finish, tr.percent_complete, tr.estimated_hours_work, tr.estimated_hours_work_min, tr.estimated_hours_work_max, tr.actual_hours_worked, tr.parent_id, tr.revision_id, pr.is_observer_p, tr.priority, pr.is_lead_p from pm_tasks_revisionsx tr, pm_task_assignment ta, pm_roles pr where ta.task_id = tr.item_id and ta.role_id = pr.role_id $extra_query $done_clause) t, cr_items i, pm_tasks_active ti, pm_task_status s, pm_projectsx p WHERE t.parent_id = p.item_id and t.revision_id = i.live_revision and t.item_id = ti.task_id and ti.status = s.status_id $party_where_clause and exists (select 1 from acs_object_party_privilege_map ppm where ppm.object_id = ti.task_id and ppm.privilege = 'read' and ppm.party_id = :user_id) [template::list::filter_where_clauses -and -name tasks] order by end_date desc