Using MySQL commands, could you convert all values of a column to UPPERCASE ?
Using MySQL commands, could you convert all values of a column to UPPERCASE ?
Use UPPER()
SELECT :
SELECT UPPER(campo) FROM 'tabela'
UPDATE :
UPDATE tabela SET campo = UPPER(campo)