Help Center/
    
      
      GaussDB/
      
      
        
        
        Developer Guide(Centralized_V2.0-3.x)/
        
        
        Stored Procedure/
        
        
        Control Statements/
        
      
      NULL Statements
    
  
  
    
        Updated on 2025-03-13 GMT+08:00
        
          
          
        
      
      
      
      
      
      
      
      
  
      
      
      
        
NULL Statements
In PL/SQL programs, NULL statements are used to indicate "nothing should be done", equal to placeholders. They grant meanings to some statements and improve program readability.
Syntax
The following shows example use of NULL statements.
        1 2 3 4 5 6 7 8 9  | 
       
        DECLARE ... BEGIN ... IF v_num IS NULL THEN NULL; -- No data needs to be processed. END IF; END; /  | 
      
Examples
gaussdb=# DECLARE
    v_num integer default NULL;
BEGIN
    IF v_num IS NOT NULL THEN
        raise info 'v_num is NULL'; 
    ELSE
        NULL; -- No data needs to be processed.
    END IF;
END;
/
ANONYMOUS BLOCK EXECUTE
 
   Parent topic: Control Statements
  
 Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
                The system is busy. Please try again later.
                
            
        For any further questions, feel free to contact us through the chatbot.
Chatbot