Función MySQL UCASE()
Ejemplo
Convierte el texto a mayúsculas:
SELECT UCASE("SQL Tutorial is FUN!");
Definición y uso
La función UCASE() convierte una cadena a mayúsculas.
Nota: Esta función es igual a la función UPPER() .
Sintaxis
UCASE(text)
Valores paramétricos
Parameter | Description |
---|---|
text | Required. The string to convert |
Detalles técnicos
Trabaja en: | Desde MySQL 4.0 |
---|
Más ejemplos
Ejemplo
Convierta el texto en "CustomerName" a mayúsculas:
SELECT UCASE(CustomerName) AS UppercaseCustomerName
FROM Customers;