2 responses to “Is It Possible To Reset A Field In A Mysql Database Using Phpmyadmin?”

  1. Stefan H

    What do you mean with “reset”? What IS the original value? Are you talking about the default value? Then you can just use a UPDATE tblname SET columnname = ‘value’.
    Give your additional info:
    UPDATE tablename
    SET field1 = ”
    , field2 = ”
    , field3 = ”
    You can specify which rows you want to reset by adding a WHERE clause to the end:
    UPDATE tablename
    SET field1 = ”
    , field2 = ”
    , field3 = ”
    WHERE field4 = ‘someValue’

  2. 2feEThig

    UPDATE tablename SET field1=’value1′ WHERE field2=’value2′;