cancel
Showing results for 
Search instead for 
Did you mean: 

How to add a nullable column in sybase IQ

Former Member
0 Kudos

Hi

How to add a nullable column in sybase IQ

Thanks,

Aparana

Accepted Solutions (1)

Accepted Solutions (1)

saroj_bagai
Contributor
0 Kudos

create table mytab(a int null)

markmumy
Advisor
Advisor
0 Kudos

Once created, you can alter the column to nullable, too:

alter table mytab alter a null;

Answers (0)