Hi all

Can any one tell me how to pass a hint for a query, which fetches data from multiple tables.

for example ::

select e.ename, d.dname, b.comm from
emp e, dept d, bonus b
where e.deptno=d.deptno
and e.ename=b.ename
and b.comm<2000;

Lets say we have the following indexes ::

Table Index
------- -------
EMP EMPNO
BONUS ENAME
DEPT DEPTNO

Thanks in Advance.

raj