| SQL - Structured Query Language | 
                IS OperatorIS operator is used to validate something truth of some condition that returns a Boolean data type with a value of True or False. The following query is used to identify empty product remarks record(s) from PRODUCT Table. -- Example 43 -- 
 SELECT * FROM Product 
 SELECT * FROM Product WHERE Remarks IS NULL Query Output Screen  | 
            
* * * * *