Sunday, October 14, 2012

NOTNULL use in database SQL

This one is pretty simple it states whether the column accepts NULL values or not. When you specify NotNull attribute to column then u cannot give null vale to column or set column as null.

create table emloyee
{
empid int notnull,
empname nvarchar(20) notnull,
empLname nvarchar(20)notnull,
}

see more infromation from plz visit

No comments:

Post a Comment