LOWER() : LOWER « String « SQL / MySQL






LOWER()

    
mysql>
mysql> SELECT LOWER('Cats and Dogs');
+------------------------+
| LOWER('Cats and Dogs') |
+------------------------+
| cats and dogs          |
+------------------------+
1 row in set (0.00 sec)

   
    
    
    
  








Related examples in the same category

1.Convert the values to uppercase or lowercase with UPPER( ) or LOWER( ):