database - Make a column nullable in Ingres -


i make column nullable in ingres database, couldn't find statement, or tool allow me this.

anyone can me?


ingres version: 9.2.1

so let's create table not null field:

create table test ( field_1 char(10) not null ) 

in order convert field allows null values need this:

alter table test alter column field_1 char(10) null 

for reference actian ingres sql manual can found here: actian ingres 2006 sql reference guide


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -