REPLACE

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

version 11


REPLACE (arithmetic_expression, arithmetic_expression, arithmetic_expression)

説明

REPLACE関数は、一番目のarithmetic_expression中で二番目のarithmetic_expressionオカレンスを検索し、それを三番目のarithmetic_expressionで置き換えます。オカレンスが見つからない場合、一番目のarithmetic_expressionが変更されずに返されます。

例題

この例題は"Francs"を"Euro"に置き換えます:

   SELECT Name, REPLACE(Currency, ‘Francs’, ‘Euro’) 
   FROM PRODUCTS;

参照

TRANSLATE.


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