sql - How to define that an attribute is optional? -
i'm programming sql server 2014 management studio.
i want build in program optional attribute.
e.g
create table [picture] ( title varchar(20), signature varchar(20), <--- should optional alttext varchar(20) )
typically, default "optional" -- if data signature
column not provided, have value of null
.
however, specify explicitly (if, instance, database configuration default not null
), signature field expressed so:
signature varchar(20) null
Comments
Post a Comment