I want to set field f1 in table t1 with the value 122 if field f2 in table t2 has value 134. Suppose field f34 is the key between table t1 and t2.
How would I write the query for this in SQL Developer?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
You can try this one (for Oracle):
See this SQLFiddleFor other RDBMS, try update with join For SQL Server:
See this SQLFiddleFor MySQL
See this SQLFiddle |
|||||||||||||
|
|
|||
|
|
