Función MySQL SUPERIOR()
Ejemplo
Convierte el texto a mayúsculas:
SELECT UPPER("SQL Tutorial is FUN!");
Definición y uso
La función UPPER() convierte una cadena a mayúsculas.
Nota: Esta función es igual a la función UCASE() .
Sintaxis
UPPER(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 UPPER(CustomerName) AS UppercaseCustomerName
FROM Customers;