1
I was doing some tests in 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 that?
1
I was doing some tests in 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 that?
3
I believe a simple update solves the problem
UPDATE TABELA SET CAMPO = NULL
Browser other questions tagged mysql mysql-workbench
You are not signed in. Login or sign up in order to post.