The LOWER() function converts a string to lower-case.
Note: Also look at the UPPER() function.
LOWER(
text)
Parameter | Description |
---|---|
text | Required. The string to convert |
Works in: | SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse |
---|
Convert the text in "CustomerName" to lower-case:
SELECT LOWER(CustomerName) AS LowercaseCustomerName
FROM Customers;
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!