Link to home
Start Free TrialLog in
Avatar of fusiontekplus
fusiontekplus

asked on

Mass update MySQL

I need the command to update a column in my DB 5000 rows.
Taxcode column reads TAXC-00000001, I need to change all of them to TAXC-00000002
another words it will read non-tax items. I like to voided changing one by one.

thank you
Avatar of cyberkiwi
cyberkiwi
Flag of New Zealand image

update tbl
set columnname = 'TAXC-00000002'
where columnname = 'TAXC-00000001'
ASKER CERTIFIED SOLUTION
Avatar of cyberkiwi
cyberkiwi
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of fusiontekplus
fusiontekplus

ASKER

Thank you for your fast respond to this issue, it worked just perfect>
Great Job