Got a requirement to update certain fields of two tables (which got 60+ millions of rows) and I'm doing the UPDATE in a loop.

I'd like to update two tables in a single UPDATE (as its difficult to query/traverse twice these tables considering the volume of these tables).

I'm looking for something like these,

UPDATE TABLE_A, TABLE_B

SET TABLE_A.column1 = "new value",
SET TABLE_B.column2 = "different value"

FROM TABLE_A a, TABLE_B b, TABLE_C c
WHERE <few conditions>

Sybase doesn't seems like this syntax though. Is there any alternatives anyone aware of ?

Thanks in advance.

link|improve this question

is all tables from the same DB? – nunu Jul 7 '11 at 3:52
yup, they are on same DB. – sojin Jul 7 '11 at 4:23
feedback

1 Answer

up vote 0 down vote accepted

As far as I know, you can define only one table in each UPDATE statement

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.