LOWER function (SQL-92 compatible)
Syntax
LOWER ( char_expression )
Description
The scalar function LOWER returns the result of the argument character expression after converting all the characters to lowercase.
Example
SELECT *
FROM customer
WHERE LOWER (name) = 'smith' ;
Notes