File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
docs/4-language-usage/3-dml-and-sql/1-general Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Default values have been nullifiable until ORACLE 12c. Meaning any tool sending
1616```
1717CREATE TABLE null_test (
1818 test_case NUMBER(2) NOT NULL
19- ,column_defaulted VARCHAR2(10) DEFAULT 'Default')
19+ ,column_defaulted VARCHAR2(10 CHAR ) DEFAULT 'Default')
2020/
2121INSERT INTO null_test(test_case, column_defaulted) VALUES (1,'Value');
2222INSERT INTO null_test(test_case, column_defaulted) VALUES (2,DEFAULT);
@@ -36,7 +36,7 @@ TEST_CASE COLUMN_DEF
3636```
3737CREATE TABLE null_test (
3838 test_case NUMBER(2) NOT NULL
39- ,column_defaulted VARCHAR2(10) DEFAULT ON NULL 'Default')
39+ ,column_defaulted VARCHAR2(10 CHAR ) DEFAULT ON NULL 'Default')
4040/
4141INSERT INTO null_test(test_case, column_defaulted) VALUES (1,'Value');
4242INSERT INTO null_test(test_case, column_defaulted) VALUES (2,DEFAULT);
You can’t perform that action at this time.
0 commit comments