I am trying to update several columns of a MySQL database row... If this can be done my syntax must be off, I can't seem to get it(several tries), or find it in the man(looked). TIA, Jim
UPDATE table SET column1=value1, column2=value2, column3=value3 WHERE other_column = something;
THANKS!