primera - sql substring hasta un caracter
SQL cambiando un valor a mayúscula o minúscula (5)
LCASE o UCASE respectivamente.
Ejemplo:
SELECT UCASE(MyColumn) AS Upper, LCASE(MyColumn) AS Lower
FROM MyTable
¿Cómo se hace un campo en una declaración de selección sql en mayúscula o minúscula?
Ejemplo:
seleccionar el nombre de Persona
¿Cómo hago que firstname siempre devuelva mayúsculas y también siempre devuelva minúsculas?
SQL SERVER 2005:
print upper(''hello'');
print lower(''HELLO'');
SELECT UPPER(firstname) FROM Person
SELECT LOWER(firstname) FROM Person
Tu puedes hacer:
SELECT lower(FIRST NAME) ABC
FROM PERSON
NOTA: ABC
se utiliza si desea cambiar el nombre de la columna
Puede usar la LOWER function
y UPPER function
. Me gusta
SELECT LOWER(''THIS IS TEST STRING'')
Resultado:
this is test string
Y
SELECT UPPER(''this is test string'')
resultado:
THIS IS TEST STRING