Why the most natural query(i.e. using INNER JOIN (instead of LEFT JOIN)) is very slow.
This query takes too long... explain analyze select c.company_rec_id, c.the_company_code , c.company from tlist t -- it is questionable why this query become fast when using left join, the most natural query is inner join... join mlist m using(mlist_rec_id) join parcel_application ord_app using(parcel_application_rec_id) join par...