Sybase / ALTER TABLE: how to turn an existing column from non-nullable to nullable?

I hope that this name has become clear.

I would like to see an example of an alter table statement that can modify an existing non-NULL column in a Sybase table to nullify.

+5
source share
1 answer

Changing the default NULL value for a column :

If you only change the default NULL value for a column, you do not need to specify the column data type

(Switching an example from the above link):

alter table authors
modify address null
+10
source

All Articles