postgresqlHow do I convert a string to lowercase in PostgreSQL?
To convert a string to lowercase in PostgreSQL, you can use the LOWER function. This function takes a string as its argument and returns the same string in all lowercase letters.
For example, the following code block:
SELECT LOWER('STRING');
will return the following output:
string
The LOWER function can be used in a variety of contexts, such as in a SELECT clause, in a WHERE clause, and in a GROUP BY clause.
The syntax for the LOWER function is as follows:
LOWER(string)
Where string is the string to be converted to lowercase.
Here are some useful links for more information on the LOWER function:
More of Postgresql
- How do I use PostgreSQL's XMLTABLE to parse XML data?
- How can I retrieve data from PostgreSQL for yesterday's date?
- How do I use PostgreSQL's XMIN and XMAX features?
- How do I use the PostgreSQL quote_ident function?
- How do I round a number in PostgreSQL?
- How do I use the PostgreSQL NVL function?
- How do I use PostgreSQL with Qt?
- How can I use PostgreSQL XOR to compare two values?
- How do I use the WITH statement in PostgreSQL?
- How can I decide between PostgreSQL and MySQL for my software development project?
See more codes...