SAND CDBMS Tools Reference Guide
NDL++ Functions:
Syntax and Examples


Return to String Function Index

 

String Function Syntax and Examples


LCASE( )

The LCASE() function converts the specified string to lowercase characters.

Syntax:

LCASE(string)


Example:

input: SAMPLESTRING


IMPORT @sample.dat
{

RECORD
{
field1 *\r\n
}
schema1.table1
{
col1 LCASE(field1)
}

}


Results:

schema1.table1.col1 samplestring

 

Return to String Function Index