Hi,
i'm lerning OQL, can You help me with this example?
for this scheme:

i have two queries in SQL:
1)
SELECT e.name FROM (Emp e INNER JOIN Dept d ON e.workIn=d.d#) WHERE d.boss=3;
2)
SELECT empWork.name FROM (emp JOIN Dept ON (emp.worksIn=Dept.d#)
JOIN emp empBoss ON (Dept.boss=empBoss.e#)) empWork WHERE empBoss.name="Smith";
and i want to write it in OQL. can You help me?
is it good place for that ask?