Nullability Option | Default Option | Results |
WITH NULL | (none specified) | The variable can be null; default value is null. |
NOT NULL | (none specified) | The default is 0 or blank (according to data type). |
(none specified) | WITH DEFAULT | Not valid without a NULL clause. |
(none specified) | NOT DEFAULT | Not valid without a NULL clause. |
WITH NULL | WITH DEFAULT | Not valid. |
WITH NULL | NOT DEFAULT | Not valid. |
NOT NULL | WITH DEFAULT | The variable defaults to 0 or blank, according to its data type. |
NOT NULL | NOT DEFAULT | The variable defaults to 0 or blank, according to its data type. |