>From what I've read in the docs, this should work, yes?
>
>select mcorder.ord_id, project.address, mcuser.last_name
>from
> project inner join
> (mcuser inner join
>mcorder
> on mcuser.usr_id = mcorder.usr_id)
> on project.prj_id = mcorder.prj_id;
No sir. You've separated th
From: "Marcos Minshew" <[EMAIL PROTECTED]>
Sent: Wednesday, January 17, 2001 10:05 PM
> >From what I've read in the docs, this should work, yes?
>
> select mcorder.ord_id, project.address, mcuser.last_name
> from
> project inner join
> (mcuser inner join
>mcorder
> on mcus
>From what I've read in the docs, this should work, yes?
select mcorder.ord_id, project.address, mcuser.last_name
from
project inner join
(mcuser inner join
mcorder
on mcuser.usr_id = mcorder.usr_id)
on project.prj_id = mcorder.prj_id;
Or am I just stoopid today?
---