4D v14INSERT | 
            ||||||||||||||
                    
                        
  | 
                
                    
                         
    4D v14
 
INSERT 
                                
                                
        
 | 
                |||||||||||||
| 
                     | 
		||
The INSERT function inserts one string into another at a given position. The first arithmetic_expression passed is the destination string. The second arithmetic_expression is the index where the string passed in the fourth arithmetic_expression will be inserted and the third arithmetic_expression gives the number of characters to be removed at the given insertion point.
This example will insert "Dear " in front of the first names in the PEOPLE table:
SELECT INSERT (PEOPLE.FirstName,0,0,’Dear ‘) FROM PEOPLE;
	Product:  4D
	Theme:  Functions
	
        
        
	
	4D SQL Reference ( 4D v11 SQL Release 4 )
	4D SQL Reference ( 4D v14)
	4D SQL Reference ( 4D v12.1)
	4D SQL Reference ( 4D v13.4)
	4D SQL Reference ( 4D v14 R2)
	4D SQL Reference ( 4D v14 R3)
	4D SQL Reference ( 4D v14 R4)