In most cases (all?), You can rewrite the request without using the request in the where clause and get much better performance. Try something like:
SELECT DISTINCT t.* FROM some_table t, ut_funds u WHERE t.id=u.unit_trust_managing_company_id
source share