|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Multiple updates
I need to update multiple records in one query. Can anyone give me a hand?
|
|
#2
|
|||
|
|||
|
RE: Multiple updates
More information would be helpful ...
|
|
#3
|
|||
|
|||
|
RE: Multiple updates
Basically, you can update one or more columns in one table:
UPDATE tbname SET col1='xx', col2=1 WHERE condition; or you can update a column in different tables: UPDATE items,month SET items.price=month.price WHERE items.id=month.id; Check the manual for more info. |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Database Help > Multiple updates |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|