09-20-2007, 11:11 AM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
MySQL UPDATE queries are written differently to INSERT queries. An UPDATE query looks like so:
Code:
UPDATE
myTable
SET
MyId = 5,
myUsername = 'Wildhoney'
WHERE
myColumn = 'Foo'
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|