head     1.1;
branch   ;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.1
date     91.03.19.00.25.01;  author kemnitz;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@/* a three way reflexive join __ passes relational muster */
retrieve (e.name) 
from e in emp, m in emp, d in dept
where e.dept = d.dname 
and d.mgrname = m.name
and e.salary > m.salary
\p
@
