Reputation: 40624
Hopefully the title has made it quite clear.
I would like to see an example of a alter table statement that can change an existing non-nullable column in a Sybase table to nullable.
Upvotes: 5
Views: 21552
Reputation: 239646
Modifying the NULL default value of a column:
If you are changing only the NULL default value of a column, you do not need to specify a column's datatype
(Switching the example from the above link):
alter table authors
modify address null
Upvotes: 12