hopefully this is possible one way or another !
use update…
“UPDATE usertable SET userid = 1234 WHERE userid = 4567″
This will update the row where userid is equal to 4567 to a new user id of 1234 on the table named “usertable”.
use the “update” command.
the basic syntax of it is
UPDATE SET =, = WHERE =
remember to always use a Where clause otherwise it will update every row in your table…which is not what you want to happen