I am trying to update the state field in my database.
I want the state names to be abbreviated.
I have written this query:
UPDATE table2 SET state = "VA"
WHERE (state="virginia"
but it will only update one variable. I need all of the states to be abbreviated.
HELP!
I want the state names to be abbreviated.
I have written this query:
UPDATE table2 SET state = "VA"
WHERE (state="virginia"
but it will only update one variable. I need all of the states to be abbreviated.
HELP!