web-api
answered May 31 '22 00:00
The UPPER function converts a given string or character to upper case( lower case to upper case ) and the UPPER function works with static string and given string field as well.
select upper(`name`) from _categories
above query returns Upper case all field of `name` from the _categories table
select upper('static')
above query returns "STATIC"(upper case of 'static')