mayúsculas y minúsculas en SQL
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
Sparkling Shark
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
UPDATE table_name SET tag = LOWER(tag)