Hey guys, got a question here on MIN function with sql. The exercise under the MIN function. How do I go about it? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hey guys, got a question here on MIN function with sql. The exercise under the MIN function. How do I go about it?

You are required to write a query to select the MIN conceded goals from a table named league which has the columns: team, scored goals and conceded goals

19th Oct 2021, 6:32 AM
Nji Elijah
2 Answers
0
select min(column_name) from t_table_name where <conditions> group by group_columns Write your code which you tried to achieve the task
24th Oct 2021, 7:52 AM
Sushil 🛡️
Sushil 🛡️ - avatar
0
Ok, I'll try that
26th Oct 2021, 5:08 AM
Nji Elijah