I'm guessing you did not actually try blahblahblah...
Try UPDATE tablename SET fieldname = 'value' WHERE (and then your specific record/ID you wish to update, or you will modify the entire table);
Example:
UPDATE spawn2 SET respawntime = '720' WHERE spawngroupid = 1;
|