POSITION

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

version 11


POSITION (arithmetic_expression IN arithmetic_expression)

説明

POSITION関数は、二番目のarithmetic_expression中、一番目のarithmetic_expressionの開始位置を返します。文字列が見つからない場合、0が返されます。

例題

この例題はLastName中単語"York"の開始位置を返します:

   SELECT FirstName, POSITION('York’ IN LastName) 
   FROM PEOPLE;

参照

LOCATE, SUBSTRING.


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