Assign null value to a field

1

I was doing some testing on the local database, and for them I ended up modifying a field that was null , assigning a value to it.

Now that I've done the tests, I want to re-assign the value null to that field. How can I do this?

    
asked by anonymous 05.05.2015 / 20:08

1 answer

3

I think a simple update will solve the problem

UPDATE TABELA SET CAMPO = NULL
    
05.05.2015 / 20:11