1. LCASE() :
La función LCASE() utilizada para convertir un texto a minúsculas. Esta función es similar a la función LOWER().
Sintaxis:
SELECT LCASE(text)
Ejemplo :
SELECT LCASE("Reading on GEEKSFORGEEKS is FUN") AS LowerText;
Producción –
Texto Inferior |
---|
leer en geeksforgeeks es divertido |
2. INFERIOR() :
Sintaxis :
SELECT LOWER(text)
Ejemplo :
SELECT LOWER("Studying on GeeksForGeeks is FUN") AS LowerText;
Producción –
Texto Inferior |
---|
estudiar en geeksforgeeks es divertido |
Publicación traducida automáticamente
Artículo escrito por khushboogoyal499 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA