Latest web development tutorials

SQL LCASE () function

LCASE () function

() Function pushes the value LCASE field converted to lowercase.

SQL LCASE () syntax

SELECT LCASE(column_name) FROM table_name;

The syntax for SQL Server

SELECT LOWER(column_name) FROM table_name;


The demo database

In this tutorial, we will use w3big sample database.

The following is a selected "Websites" table data:

+----+--------------+---------------------------+-------+---------+
| id | name         | url                       | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1  | Google       | https://www.google.cm/    | 1     | USA     |
| 2  | 淘宝          | https://www.taobao.com/   | 13    | CN      |
| 3  | 本教程      | http://www.w3big.com/    | 4689  | CN      |
| 4  | 微博          | http://weibo.com/         | 20    | CN      |
| 5  | Facebook     | https://www.facebook.com/ | 3     | USA     |
| 7  | stackoverflow | http://stackoverflow.com/ |   0 | IND     |
+----+---------------+---------------------------+-------+---------+


SQL LCASE () examples

The following SQL statement is selected from the "Websites" table "name" and "url" column, and the conversion value "name" column to lowercase:

Examples

SELECT LCASE(name) AS site_title, url
FROM Websites;

Execute the above SQL output results are as follows: