INSERT

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

version 11


INSERT (arithmetic_expression, arithmetic_expression, arithmetic_expression, arithmetic_expression)

説明

INSERT関数は、文字列の指定された位置に、他の文字列を挿入します。一番目のarithmetic_expressionは挿入先文字列です。二番目のarithmetic_expressionは挿入位置、三番目のarithmetic_expressionは挿入辞に削除するう文字数、そして四番目のarithmetic_expressionは挿入する文字列です。

例題

この例題は"Dear "をPEOPLE テーブルのFirstNameの前に挿入します:

   SELECT INSERT (PEOPLE.FirstName,0,0,’Dear ‘) FROM PEOPLE;

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