Question

J'ai une requête qui fonctionne très bien dans MySQL, mais quand je le lance sur Oracle je reçois l'erreur suivante:

  

Erreur SQL: ORA-00933: commande SQL pas correctement terminé
  00933. 00000 - "commande SQL pas correctement terminé"

La requête est:

UPDATE table1
INNER JOIN table2 ON table1.value = table2.DESC
SET table1.value = table2.CODE
WHERE table1.UPDATETYPE='blah';
Était-ce utile?

La solution

Cette syntaxe est pas valable dans Oracle. Vous pouvez faire ceci:

UPDATE table1 SET table1.value = (SELECT table2.CODE
                                  FROM table2 
                                  WHERE table1.value = table2.DESC)
WHERE table1.UPDATETYPE='blah'
AND EXISTS (SELECT table2.CODE
            FROM table2 
            WHERE table1.value = table2.DESC);

Ou vous peut pouvoir faire ceci:

UPDATE 
(SELECT table1.value as OLD, table2.CODE as NEW
 FROM table1
 INNER JOIN table2
 ON table1.value = table2.DESC
 WHERE table1.UPDATETYPE='blah'
) t
SET t.OLD = t.NEW

(Cela dépend si la vue en ligne est considéré par Oracle actualisable).

Autres conseils

Utilisez ceci:

MERGE
INTO    table1 trg
USING   (
        SELECT  t1.rowid AS rid, t2.code
        FROM    table1 t1
        JOIN    table2 t2
        ON      table1.value = table2.DESC
        WHERE   table1.UPDATETYPE='blah'
        ) src
ON      (trg.rowid = src.rid)
WHEN MATCHED THEN UPDATE
    SET trg.value = code;

MERGE avec clause WHERE:

MERGE into table1
USING table2
ON (table1.id = table2.id)
WHEN MATCHED THEN UPDATE SET table1.startdate = table2.start_date
WHERE table1.startdate > table2.start_date;

Vous avez besoin de la clause WHERE car les colonnes référencées dans la clause de ON ne peuvent pas être mis à jour.

 UPDATE ( SELECT t1.value, t2.CODE
          FROM table1 t1
          INNER JOIN table2 t2 ON t1.Value = t2.DESC
          WHERE t1.UPDATETYPE='blah')
 SET t1.Value= t2.CODE

Ne pas utiliser certaines des réponses ci-dessus.

Certains suggèrent l'utilisation de SELECT imbriquée, ne faites pas cela, il est atrocement lent. Si vous avez beaucoup d'enregistrements à mettre à jour, utilisez rejoindre, donc quelque chose comme:

update (select bonus 
        from employee_bonus b 
        inner join employees e on b.employee_id = e.employee_id 
        where e.bonus_eligible = 'N') t
set t.bonus = 0;

Voir ce lien pour plus de détails. http://geekswithblogs.net/WillSmith /archive/2008/06/18/oracle-update-with-join-again.aspx .

En outre, assurez-vous qu'il ya des clés primaires sur toutes les tables que vous joignez.

Comme indiqué , la syntaxe générale pour la première solution proposée par Tony Andrews est:

update some_table s
set   (s.col1, s.col2) = (select x.col1, x.col2
                          from   other_table x
                          where  x.key_value = s.key_value
                         )
where exists             (select 1
                          from   other_table x
                          where  x.key_value = s.key_value
                         )

Je pense que ce qui est intéressant surtout si vous voulez mettre à jour plus d'un champ.

Cette syntaxe suivante fonctionne pour moi.

UPDATE
(SELECT A.utl_id,
    b.utl1_id
    FROM trb_pi_joint A
    JOIN trb_tpr B
    ON A.tp_id=B.tp_id Where A.pij_type=2 and a.utl_id is null
)
SET utl_id=utl1_id;

Il fonctionne très bien oracle

merge into table1 t1
using (select * from table2) t2
on (t1.empid = t2.empid)
when matched then update set t1.salary = t2.salary

Utilisation Description au lieu de desc pour table2,

update
  table1
set
  value = (select code from table2 where description = table1.value)
where
  exists (select 1 from table2 where description = table1.value)
  and
  table1.updatetype = 'blah'
;
UPDATE table1 t1
SET t1.value = 
    (select t2.CODE from table2 t2 
     where t1.value = t2.DESC) 
WHERE t1.UPDATETYPE='blah';
UPDATE IP_ADMISSION_REQUEST ip1
SET IP1.WRIST_BAND_PRINT_STATUS=0
WHERE IP1.IP_ADM_REQ_ID        =
  (SELECT IP.IP_ADM_REQ_ID
  FROM IP_ADMISSION_REQUEST ip
  INNER JOIN VISIT v
  ON ip.ip_visit_id=v.visit_id
  AND v.pat_id     =3702
  ); `enter code here`

Tout comme une question d'exhaustivité, et parce que nous parlons Oracle, cela pourrait le faire ainsi:

declare
begin
  for sel in (
    select table2.code, table2.desc
    from table1
    join table2 on table1.value = table2.desc
    where table1.updatetype = 'blah'
  ) loop
    update table1 
    set table1.value = sel.code
    where table1.updatetype = 'blah' and table1.value = sel.desc;    
  end loop;
end;
/
UPDATE (SELECT T.FIELD A, S.FIELD B
FROM TABLE_T T INNER JOIN TABLE_S S
ON T.ID = S.ID)
SET B = A;

A et B sont des champs d'alias, vous n'avez pas besoin de pointer la table.

update table1  a 
   set a.col1='Y' 
 where exists(select 1 
                from table2 b
               where a.col1=b.col1 
                 and a.col2=b.col2
             )
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top