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

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -