Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
文字列中のすべての文字を小文字に変換します。この関数は LCASE 関数と同じです。
LOWER( string-expression )
string-expression 小文字に変換される文字列。
引数のデータ型に対応する CHAR、VARCHAR、または LONG VARCHAR。
LCASE 関数は LOWER 関数と同じです。
SQL/2008 LOWER 関数は、SQL/2008 標準のコア機能です。
次の文は、値 chocolate を返します。
SELECT LOWER( 'chOCOLate' );