- 4
Write a query to output all teams which conceded the least number of goals in the league ordered by scored goals in descending??
Help me
3 Respostas
+ 1
select *
from league
where conceded_goals = (select min(conceded_goals) from league)
order by scored_goals desc:
0
show. your. attempt.
0
Hope this helps you.
https://code.sololearn.com/Wj8CzNv9Ydvl/?ref=app