CONCAT

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

version 11


CONCAT (arithmetic_expression, arithmetic_expression)

説明

CONCAT関数は、渡された二つのarithmetic_expressionを結合した一つの文字列にして返します。

例題

この例題は、FirstNameとLastNameを一つの文字列にして返します:

   SELECT CONCAT(CONCAT(PEOPLE.FirstName,' '), PEOPLE.LastName) FROM PERSONS;

参照

CONCATENATE.


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