Subject | Re: SQL question |
---|---|
Author | dianeb77x |
Post date | 2001-12-06T13:39:40Z |
--- In ib-support@y..., "Burak OZLER" <burak.ozler@u...> wrote:
retreive the CARI_GRUP_ID,CARI_GRUP_SID, CGKOD, CGADI
From CARI_GRUP_UYE
where CARI_GRUP_UYE.CARI_GRUP_ID = CARI_GRUP.CARI_GRUP_ID And
CARI_GRUP_UYE.CARI_GRUP_SID = CARI_GRUP.CARI_GRUP_SID And
CARIID = :PRM_CARI_ID And
CARI_SID = :PRM_CARI_SID)
Or something like that.
Regards,
db
> Hi All..replication purposes. At the sql statement below I'm trying to
>
> I'm using double fielded indexes at my database becouse of
retreive the CARI_GRUP_ID,CARI_GRUP_SID, CGKOD, CGADI
> from CARI_GRUP where the given CARI_ID and CARI_SID doesn't belongto the CARI_GRUP_UYE
> -----------------------------CARI_SID=:PRM_CARI_SID)
> CARI_GRUP TABLE
> -------------------------------
> * CARI_GRUP_ID
> * CARI_GRUP_SID
> CGKOD
> CGADI
> CGACK
> TIP
> --------------------------------------
> CARI_GRUP_UYE TABLE
> -------------------------------------
> *CARI_GRUP_ID
> *CARI_GRUP_SID
> *CARIID
> *CARI_SID
> VARSAY
> --------------------------
> * - Primary key fields
>
> Select CARI_GRUP_ID,CARI_GRUP_SID, CGKOD, CGADI
> From CARI_GRUP
> Where CARI_GRUP_ID Not In(Select CARI_GRUP_ID
> From CARI_GRUP_UYE
> Where CARIID=:PRM_CARI_ID And
> and CARI_GRUP_SID Not In(Select CARI_GRUP_SIDCARI_SID=:PRM_CARI_SID)
> From CARI_GRUP_UYE
> Where CARIID=:PRM_CARI_ID And
>better and more reliable way to do it.
> The statement above must work right, but I feel that there must be a
>What about using "where not exists" instead of "where ... not in"?
> Any ideas?
> Select CARI_GRUP_ID,CARI_GRUP_SID, CGKOD, CGADI(Select *
> From CARI_GRUP
> Where not exists
From CARI_GRUP_UYE
where CARI_GRUP_UYE.CARI_GRUP_ID = CARI_GRUP.CARI_GRUP_ID And
CARI_GRUP_UYE.CARI_GRUP_SID = CARI_GRUP.CARI_GRUP_SID And
CARIID = :PRM_CARI_ID And
CARI_SID = :PRM_CARI_SID)
Or something like that.
Regards,
db