Advertisements
Advertisements
प्रश्न
Consider the given table and write the following queries in MySQL:
Table : Sports
Sid | SName | Fees | DateofPlay | CoachId |
1 | Karate | 1200 | 2024-08-24 | S1 |
2 | Football | 1800 | 2024-09-13 | S2 |
3 | Cricket | 1500 | 2024-06-14 | S3 |
4 | Lawn Tennis | 2500 | 2024-09-25 | S4 |
5 | Badminton | 1800 | 2024-10-20 | S5 |
- To display Sid and name of those sports which are to be played in the month of September.
- To display all Sports names in lower case.
- To display last two characters of all sports names whose fees is less than 1500.
लघु उत्तर
उत्तर
- SELECT Sid, SName FROM Sports WHERE MONTH(DateofPlay)=9;
- SELECT LCASE(SName) FROM Sports;
- SELECT RIGHT(SName, 2) FROM Sports WHERE Fees< 1500;
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?