LOCATE

4D - Documentation   Fran溝is   English   German   日本語   4D SQL Reference目次   4D SQL Referenceインデックス   Back   Previous   Next

version 11


LOCATE (arithmetic_expression, arithmetic_expression, arithmetic_expression)

LOCATE (arithmetic_expression, arithmetic_expression)

説明

LOCATE関数は、一番目のarithmetic_expressionを二番目のarithmetic_expression中で検索し、最初に見つかるオカレンスの位置を返します。三番目のarithmetic_expressionを渡して検索開始位置を指定することもできます。

例題

この例題はLastName中で最初に見つかるXの位置を返します:

   SELECT FirstName, LOCATE('X',LastName) 
   FROM PEOPLE;

参照

POSITION, SUBSTRING.


4D - Documentation   Fran溝is   English   German   日本語   4D SQL Reference目次   4D SQL Referenceインデックス   Back   Previous   Next