what is null give an example to described


What is NULL? Give an example to described testing for NULL in SQL?

The NULL SQL keyword is used to represent either a missing value or a value which is not applicable in a relational table. Consider there is a relation:

Person(id, name, address, phone)
Now to search ids and names of person who do not have a phone is:
Select id, name
from Person
where phone is null

Request for Solution File

Ask an Expert for Answer!!
Database Management System: what is null give an example to described
Reference No:- TGS0283210

Expected delivery within 24 Hours