|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
Way to Combine Updates to table?
I need to update two fields in the table.
The only examples I have seen are to update one field at a time. For instance update TABLE set FIELD = 'something' where FIELD2='key'; What if I have to update FIELD and then other fields for the same record. |
|
#2
|
||||
|
||||
|
seperate them with a comma:
Code:
UPDATE table_name SET field1 = 'value', field2 = 'value2', field3 = 'value3' WHERE your_key = 'value'; |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > Way to Combine Updates to table? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|