Forum Moderators: open
UPDATE table
SET agent_name = 'new agent'
WHERE agent_name = 'old agent';
The above will update every record in the table "table" where the string value in the column "agent_name" is "old agent" to the value "new agent"
You'll definitely want to learn some basic SQL if you'll be handling a database.