I have a query which works fine in MySQL, I'm trying to get it working on oracle but get the following error

SQL Error: ORA-00933: SQL command not properly ended 00933. 00000 - "SQL command not properly ended"

The query is:

UPDATE table1
INNER JOIN table2 ON table1.value = table2.DESC
SET table1.value = table2.CODE
WHERE table1.UPDATETYPE='blah';

I'd be extremely grateful for any help.

link|improve this question

40% accept rate
When I tried to setup table2 in Oracle to test my answer I found that Oracle rejected DESC as a column name. – Janek Bogucki Mar 15 '10 at 11:57
Sorry I just abbreviated the original column name to desc its obviously not that in the db – user169743 Mar 15 '10 at 13:27
feedback

4 Answers

up vote 21 down vote accepted

That syntax isn't valid in Oracle. You can do this:

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);

Or you might be able to do this:

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

(It depends if the inline view is considered updateable by Oracle).

link|improve this answer
Nice one mate, that worked nicely. YAY for Stackoverflow :) – user169743 Mar 15 '10 at 13:03
I'am writing similar query portable between dbms: oracle considers inline view is updatable, but mysql not – jonny Feb 2 '11 at 13:47
I did the second example but had to add aliases to the column names in the select and then reference them by their names in the SET but it worked, thanks – Gustavo Rubio Jun 6 '11 at 2:25
Tried with success the first syntax, thanks – Pisu Dec 12 '11 at 16:51
The second example has the benefit of allowing you to test the SQL before actually performing the update. – DReispt Jan 19 at 10:18
show 1 more comment
feedback

Oracle does not support joins in the UPDATE statements.

Use this:

MERGE
INTO    table1
USING   (
        SELECT  t1.rowid AS rid, t2.code
        FROM    table1 t1
        JOIN    table2 t2
        ON      table1.value = table2.DESC
        WHERE   table1.UPDATETYPE='blah'
        )
ON      rowid = rid
WHEN MATCHED THEN
UPDATE
SET     value = code
link|improve this answer
+1 thanks this worked like a charm, you just need to add "UPDATE" before "SET" – James Jun 1 '10 at 20:18
feedback

Using description instead of desc for 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'
;
link|improve this answer
feedback
 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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.