Closed dmcghan closed 9 months ago
This Quick SQL:
test approved boolean /default N
Yields this SQL:
create table test ( id number generated by default on null as identity constraint test_id_pk primary key, approved varchar2(1 char) constraint test_approved check (approved in ('Y','N')) default on null 'n' );
Note the default value n is lower case.
n
1.2.1
This Quick SQL:
Yields this SQL:
Note the default value
n
is lower case.