Informatics Practices

If Str = "INFORMATICS PRACTICES …." and Str1 = "… FOR CLASS XI"

Write commands to print the output as 'informatics practices for class xi'

SQL Queries

3 Likes

Answer

SELECT CONCAT(LCASE('INFORMATICS PRACTICES'), ' ', LCASE('FOR CLASS XI'));
Output
+--------------------------------------------------------------------+
| CONCAT(LCASE('INFORMATICS PRACTICES'), ' ', LCASE('FOR CLASS XI')) |
+--------------------------------------------------------------------+
| informatics practices for class xi                                 |
+--------------------------------------------------------------------+

Answered By

1 Like


Related Questions