| 
			   
                     
                  Syntax
                  string || string[ || string[...]] 
                  string
                  string can be a literal or reference column data 
                  ||
                  Required. The || (double vertical bars) is the concatenation 
                    character. It goes between two character strings to be concatenated 
                    together. 
                  top 
                    
                  Example
                  select company, 
                   CUSTOMERS.LASTNAME || ', ' || CUSTOMERS.FIRSTNAME 
                   
                  from customers  
                    where company = 'systems' 
                  OR 
                  select 
                  PRODUCTS.PRODUCT_NO || ' is the product number 
                    for ' || PRODUCTS.DESCRIPTION 
                  from products 
                    
                    
                  top 
                  
			   |