Subject | Re: Inner Joins and 3 tables |
---|---|
Author | tractaylor |
Post date | 2004-02-25T17:51:58Z |
--- In firebird-support@yahoogroups.com, JoshCooper@u... wrote:
the join statements
SELECT a.ASSY_CODE FROM MATRIX m
INNER JOIN MATRIX_CELL_ASSY mca
ON m.MATRIX_ID = mca.MATRIX_ID
INNER JOIN ASSEMBLY a
ON mca.ASSY_ID = a.ASSY_ID
WHERE MATRIX_LIB_ID = 3 And MATRIX_ID = 87
and a.ASSY_LIB_ID = mca.ASSY_LIB_ID
Try that.
>statement:
> Do firebird (1.5stable) support subqueries? I have the following
>MATRIX_ID = 87
> SELECT a.ASSY_CODE FROM MATRIX m
> INNER JOIN MATRIX_CELL_ASSY mca
> ON m.MATRIX_ID = mca.MATRIX_ID WHERE MATRIX_LIB_ID = 3 And
> INNER JOIN ASSEMBLY aI get an
> ON mca.ASSY_ID = a.ASSY_ID WHERE a.ASSY_LIB_ID = mca.ASSY_LIB_ID
>
> which appears to be correct, eachy INNER JOIN works on its on, but
> error when i get to the second inner join.be done
> Is it a syntax issue (grouping of some sort) or can this just not
> currently?What I think you have to do is move your where statements down after
>
> Thanks,
>
> Josh Cooper
> Database Administrator
> United States Aluminum
> Phone: 1-800-627-6440 X590
> Fax: 1-972-937-5467
the join statements
SELECT a.ASSY_CODE FROM MATRIX m
INNER JOIN MATRIX_CELL_ASSY mca
ON m.MATRIX_ID = mca.MATRIX_ID
INNER JOIN ASSEMBLY a
ON mca.ASSY_ID = a.ASSY_ID
WHERE MATRIX_LIB_ID = 3 And MATRIX_ID = 87
and a.ASSY_LIB_ID = mca.ASSY_LIB_ID
Try that.