मराठी

Consider the given table and write the following queries in MySQL: Table : Sports Sid 1 SName Karate Fees 1200 DateofPlay 2024-08-24 CoachId S1 - Informatics Practices

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
  1. To display Sid and name of those sports which are to be played in the month of September.
  2. To display all Sports names in lower case.
  3. To display last two characters of all sports names whose fees is less than 1500.
लघु उत्तर

उत्तर

  1. SELECT Sid, SName FROM Sports WHERE MONTH(DateofPlay)=9;
  2. SELECT LCASE(SName) FROM Sports;
  3. SELECT RIGHT(SName, 2) FROM Sports WHERE Fees< 1500;
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2023-2024 (February) Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×