tags:

views:

10

answers:

1

I want to set the value of the column 'character_hold' to 'no' for all my rows in my MYSQL database. Is there a SQL statement I can use in phpmyadmin to set them all to 'no'?

+1  A: 

UPDATE tableName set character_hold='no'

simendsjo