| 
        
        SQL Type
         | 
      
        
        Literal Syntax
         | 
      
        
        Example
         | 
     
| 
        
        BIGINT
         | 
      
        
        n where n is any valid integer value in the range of the INTEGER data type
         | 
      
        
        12 or -34 or 0
         | 
     
| 
        
        BOOLEAN
         | 
      
        
        Min Value: 0
        
       
        Max Value: 1
         | 
      
        
        0
         1  | 
     
| 
        
        DATE
         | 
      
        
        ‘yyyy-mm-dd’
         | 
      
        
        '2010-05-21'
         | 
     
| 
        
        DATETIME
         | 
      
        
        ‘yyyy-mm-dd hh:mm:ss.SSSSSS'
         | 
      
        
        '2010-05-21 18:33:05.025'
         | 
     
| 
        
        DECIMAL
         | 
      
        
        n.f where n is the integral part and f is the fractional part
         | 
      
        
        0.25 or 3.1415 or -7.48
         | 
     
| 
        
        DOUBLE
         | 
      
        
        n.f E x where n is the integral part, f is the fractional part, and x is the exponent
         | 
      
        
        1.2E0 or 2.5E40 or -3.45E2 or 5.67E-4
         | 
     
| 
        
        INTEGER
         | 
      
        
        n where n is a valid integer value in the range of the INTEGER data type
         | 
      
        
        12 or -34 or 0
         | 
     
| 
        
        LONGVARBINARY
         | 
      
        
        ‘hex_value’
         | 
      
        
        '000482ff'
         | 
     
| 
        
        LONGVARCHAR
         | 
      
        
        ‘value’
         | 
      
        
        'Hello World, how are you'
         | 
     
| 
        
        TIME
         | 
      
        
        ‘hh:mm:ss’
         | 
      
        
        '18:33:05'
         | 
     
| 
        
        VARCHAR
         | 
      
        
        ‘value’
         | 
      
        
        'Hello World'
         |