SELECT /*+ USE_HASH(CX_REL_ACCNT cx_rel_scen) PARALLEL(etape_1 4)*/
CX_REL_ACCNT.x_accnt_id,
CX_REL_ACCNT.x_rel_dt,
CX_REL_ACCNT.last_upd
FROM
CX_REL_ACCNT, cx_rel_scen
WHERE
x_histo = 'Y' -- Scénario historisé
AND x_etp_num = '1'
AND x_scen_id = cx_rel_scen.row_id
AND cx_rel_scen.x_type = 'Scenario'
AND SUBSTR (cx_rel_scen.x_libelle, 1, 3) = 'REL'
AND NOT EXISTS (SELECT /*+ USE_HASH(etape_1 cx_rel_scen) PARALLEL(etape_1 4)*/ 1 -- Il n'existe pas
FROM cx_rel_accnt etape_1, cx_rel_scen
WHERE etape_1.X_ACCNT_ID = CX_REL_ACCNT.X_ACCNT_ID -- Sur le même client
AND etape_1.x_histo = 'N' -- non historisé
AND etape_1.x_etp_num = '1'
AND etape_1.x_scen_id = cx_rel_scen.row_id
AND cx_rel_scen.x_type = 'Scenario'
AND SUBSTR (cx_rel_scen.x_libelle, 1, 3) = 'REL')
---------------
Une femme c'est temporaire - une ex c'est pour la vie.