| 
			   
                     
                  Syntax
                  CHAR[ACTER]_LENGTH (string) 
                  CHAR[ACTER]_LENGTH 
                  Required. Both functions are the same.  
                  (string)  
                  Required. Any string. This can be a literal or data from 
                    a column. 
                  top 
                    
                  Example
                  select company, city, 
                  char_length (city)  
                  from customers  
                    where state = 'co' 
                  OR 
                  select company, contact, 
                  character_length ("Denver") 
                  from customers 
                    where state = 'co' 
                    
                    
                  top 
                  
			   |