SQL NULL Values
A NULL value is a field with no value.It is very important to understand that the value of NULL is different from the zero value or a field containing spaces. Syntax For Creating NULL Table CREATE TABLE Students( ID INT NOT NULL, NAME VARCHAR (225) NOT NULL, GENDER VARCHAR (225) , ADDRESS VARCHAR (225) , PRIMARY KEY (ID) ); Here, NOT NULL means that the column must accept the specified value of…
View On WordPress















