Função MySQL UCASE()
Exemplo
Converta o texto para maiúsculas:
SELECT UCASE("SQL Tutorial is FUN!");
Definição e uso
A função UCASE() converte uma string para maiúscula.
Nota: Esta função é igual à função UPPER() .
Sintaxe
UCASE(text)
Valores de parâmetro
Parameter | Description |
---|---|
text | Required. The string to convert |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Converta o texto em "CustomerName" para letras maiúsculas:
SELECT UCASE(CustomerName) AS UppercaseCustomerName
FROM Customers;