top of page
CerebroSQL

UPPER

База данных: MySQL

68747470733a2f2f7374796c65732e7265646469746d656469612e636f6d2f74355f32716d366b2f7374796c65

Syntax:
UPPER(str)

Returns the string str with all characters changed to uppercase
according to the current character set mapping. The default is utf8mb4.

mysql> SELECT UPPER('Hej');
-> 'HEJ'

See the description of LOWER() for information that also applies to
UPPER(). This included information about how to perform lettercase
conversion of binary strings (BINARY, VARBINARY, BLOB) for which these
functions are ineffective, and information about case folding for
Unicode character sets.

URL: https://dev.mysql.com/doc/refman/8.0/en/string-functions.html

Example

bottom of page