This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com |
||||||||||||||
|
4D v20 R7
POSITION
|
POSITION (arithmetic_expression IN arithmetic_expression) |
||
The POSITION function returns a value indicating the starting position of the first arithmetic_expression within the second arithmetic_expression. If the string is not found, the function returns zero.
This example will return the starting position of the word "York" in any last names of the PEOPLE table:
SELECT FirstName, POSITION('York’ IN LastName)
FROM PEOPLE;
Product: 4D
Theme: Functions
4D SQL Reference ( 4D v20 R7)