Good Morning,
Just a quick question what this field actually means?
I am trying to create an export script which follows this standard:
lname varchar(30) **NOT NULL**,
So if last name is_nullable=yes then would I put NULL rather than NOT NULL at the *’d code.
Many Thanks,
Joel
The docs for
CREATE TABLEstatewith further explanation
The
[ ]brackets mean you don’t have to specify either, but given the complexity of the rules around what the default is (see “Nullability Rules Within a Table Definition” in the above link), you’re probably better off always saying which you want.