I have a table that looks like this:
description | value
-----------------------------
"email" | "blah@blah.com"
"password" | "lickme"
and I want to update the value cell in both rows. I've tried something like this:
UPDATE tablename SET value = "blah" WHERE description = "password", value = "something@something.com" WHERE description = "email"
This however does not work. I'm guessing that WHERE clauses don't work that way. Anyone know how to do this?