QUERY PLAN
Limit (cost=60.24..60.27 rows=10 width=195)
-> Sort (cost=60.24..60.29 rows=20 width=195)
Sort Key: s.created_at
-> Group (cost=59.66..59.81 rows=20 width=195)
Group Key: s.id, u.id
-> Sort (cost=59.66..59.71 rows=20 width=195)
Sort Key: s.id
-> Nested Loop (cost=0.00..59.23 rows=20 width=195)
-> Seq Scan on tbl_users u (cost=0.00..8.16 rows=1 width=4)
Filter: ((id = 1000) AND (department_id = 10))
-> Seq Scan on tbl_tasks s (cost=0.00..50.87 rows=20 width=191)
Filter: ((parent_id IS NULL) AND (head_of = 1000) AND (status = '2'::smallint))