Advertisements
Advertisements
Question
Write the SQL queries which will perform the following operations:
- To display the year from your Date of Admission which is '2023-05-15'.
- To convert your email id '[email protected]' to lowercase.
- To remove leading spaces from a string 'my country'.
- To display current date.
- To display the value of 106.
Short Answer
Solution
select year('2023-05-15');
select lower('[email protected]');
select ltrim('my country');
select cur date();
select pow(10,6);
shaalaa.com
Is there an error in this question or solution?