SQL Query Question (Easy I Think)
I have a column in my database called "timezoneoffset". I want to change the values of all the enteries from "0" to "-6".
How do I write that in SQL?
Thanks,
Clay
Edit: I am using phpMyAdmin
--------------- Added [DATE]1375983563[/DATE] at [TIME]1375983563[/TIME] ---------------
Got it I think!!!!
UPDATE user SET `timezoneoffset`="-6"
|