SQL - LOWER
LOWER() Function दिए गए string को lowercase में convert करके return करता है |
Syntax for LOWER() String SQL Function
LOWER(str)
Parameter :
str : यहाँ पर string दिया जाता है |
LOWER() और LCASE() ये दोनों एक जैसे funtions है |
Example for LOWER() String Function in SQL
Example पर दिए string को lowercase में convert करके return किया गया है |
Source Code :Output :SELECT LOWER("HEllo WORld");
+----------------------+ | LOWER("HEllo WORld") | +----------------------+ | hello world | +----------------------+
Another Example for LOWER() String Function in SQL
Example पर Appliances इस table के Appliances इस column की सभी values को lowercase में convert किया गया है |
Source Code :Output :SELECT LOWER(Appliances) FROM Appliances;
+-------------------+ | LOWER(Appliances) | +-------------------+ | washing machine | | t.v. | | washing machine | | refrigerator | | cooler | | a.c. | | iron | | laptop | +-------------------+