How to Remove a Default Value From a Column

To remove a default value in a table use the drop default clause:

alter table employee modify last_bonus default NULL;

IN THIS PAGE