This question asked in CBSE SQP-2021
In SQL, what is the use of IS NULL operator?
Answer:
The IS NULL operator is used to check if a column has null/empty value.
 
  
   Syntax:
  
  
   SELECT
  
  
   
    column_names
   
  
 
 
  
         FROM
  
  
   
    table_name
   
  
 
 
  
         WHERE
  
  
   
    column_name
   
  
  
   IS
  
  
   NULL
  
  
   ;
  
 
Example:
  
 
 
 