Apache Drill - String Function UPPER(x)



The following program shows the query for this function −

Query

0: jdbc:drill:zk = local> select upper('apache drill') from (values(1));

Result

+---------------+
|    EXPR$0     |
+---------------+
| APACHE DRILL  |
+---------------+

It converts the given string to the upper case format.

apache_drill_sql_operations.htm
Advertisements