Returns a string that consists of the words that are sorted alphabetically.
Category: | String |
Returned data type: | String |
Note: | Special characters such as ",.!" are not treated as separation characters. |
specifies a string to sort; the string can be specified as string constant, field name, or expression.
Note | If source is NULL, the function returns a NULL value. |
specifies whether the words in the input string should be sorted in ascending order; this can be specified as a Boolean constant, field name, or expression. The value must evaluate to either TRUE or FALSE:
TRUE | the input string is sorted in ascending order. |
FALSE | the input string is sorted in descending order. |
Default | TRUE |
specifies whether duplicate words should be removed; this can be specified as a Boolean constant, field name, or expression. The value must evaluate to either TRUE or FALSE:
TRUE | duplicate words are removed. |
FALSE | duplicate words are not removed. |
Default | FALSE |