Home » Interview » Technology

Explain Not Null constraint.

Correct Answer: Oracle NOT NULL is used on a column to ensure that the value for that column can never be NULL Example: Below, the constraint is that the id should never be NULL If it is, oracle throws an error create table employee ( id number NOT NULL, Name varchar(200) );

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion