Advertisements
Advertisements
प्रश्न
Using the sports database containing two relations (TEAM, MATCH_DETAILS) and write the Query for the following:
Display the MatchID of all those matches where FirstTeam has scored less than 70 but SecondTeam has scored more than 70.
एक पंक्ति में उत्तर
Advertisements
उत्तर
SELECT MatchID FROM MATCH_DETAILS WHERE FirstTeamScore < 70 AND SecondTeamScore < 70;
shaalaa.com
SQL for Data Query
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
