| 
			   
                     
                  Syntax
                  POSITION(string1 IN string2) 
                  POSITION()
                  Required.  
                  string1 
                  Required. Any valid text string. The text to search for. 
                   
                  IN 
                  Required.  
                  string2 
                  Required. Any valid text string. The text in which to search 
                    for string1. 
                   
                  top 
                    
                  Example
                  select company,  
                  position(upper('sys') IN upper(customers.company)) 
                   
                  from customers where company='systems' 
                    
                  
                     
                      Company | 
                      Position | 
                     
                     
                      Camco Systems  | 
                      7  | 
                     
                     
                      SoftSys Corp  | 
                      5  | 
                     
                   
                    
                    
                    
                  top 
                  
			   |