I have some DDL from DB2/mainframe and it does not list the default value.
Example:
create table foo (
col1 char(2) not null with default
);
Question: So what value does DB2 default in here?
I'm familiar with the following format......
create table foo (
col1 char(2) not null with default 'HI'
);
Thanx in advance,
Ray
Example:
create table foo (
col1 char(2) not null with default
);
Question: So what value does DB2 default in here?
I'm familiar with the following format......
create table foo (
col1 char(2) not null with default 'HI'
);
Thanx in advance,
Ray
Comment