LOWER(A)
- 1 Minute to read
- Print
- DarkLight
- PDF
LOWER(A)
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
General: LOWER(A)
Forces all characters in a string to be lowercase.
Purpose
Use this function to:
- transform a string to lowercase characters
Return Value
Property | Value |
---|---|
FieldType | String |
FieldSize | Low / Med / High / Continuous |
DataType | Discrete / Continuous |
DataSize | Short / Integer / LongInteger |
Return Value: "all lower case string, even with other characters"
Parameters
Parameter | JSON | Description |
---|---|---|
Table | “targetTable”: “MyTableName” | The target table on which the new field will be created |
Filter | “dataset”: {DataSet_JSON} | Optional. If a filter is applied, records not in the filter recordset will be returned as null. |
Function | "function":"string" | "string" |
“p1”: “LOWER(A)” | String Function | |
“p2”:"fieldname" | Required. Supports:
|
JSON Sample
{
"method": "BuildBakedField",
"project": "BikeData2",
"targetTable": "worldcities",
"overwrite": true,
"name": "LOWER city",
"function": "string",
"p1": "LOWER(A)",
"p2": "city"
}
Usage Notes
See Also:
- Engineering | Expression Field
- UPPER(A)
Was this article helpful?