Log in

View Full Version : Change Values In One Field


The Equivocate
12-11-2004, 08:26 PM
I have my vbgames table, and I want to be able to change the 'arcadepass_jackpot' on all of my 300+ games all at once, instead of going into each one and editing them one by one. Is there an SQL query that I can run that will alter all 'arcadepass_jackpot' fields from 500 to 250 (or any other number)?

Davey
12-11-2004, 08:44 PM
UPDATE vb3_arcadepass_jackpot
SET fieldname='250'
WHERE fieldname='500'
Change vb3_arcadepass_jackpot to the correct 'arcadepass_jackpot' table.
Change fieldname to the name of the field where the values are kept.

edit.- you know how to run that query right? in vB acp or in phpMyAdmin..

The Equivocate
12-11-2004, 08:54 PM
Yep, this is what I did and it worked fine

UPDATE vbgames
SET arcadepass_jackpot='250'
WHERE arcadepass_jackpot='500'

Davey
12-12-2004, 09:18 AM
OK I almost had it. ;)