...
Column reference example:
d-codelang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| UPPER
| |||||||||
upper(MyName) |
Output:
...
Returns the
...
values
...
from the MyName
column
...
written
...
in UPPER.
String literal example:
d-code-lang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| UPPER
| |||||||||
upper('Hello, World') |
Output:
...
Returns the string: HELLO, WORLD
...
.
D s | ||
---|---|---|
|
d-code-lang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| UPPER
| |||||||||
upper(column_string) |
Argument | Required? | Data Type | Description |
---|---|---|---|
column_string | Y | string | Name of the column or string literal to be applied to the function |
...