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
2 ответов
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
0
Ok, I'll try that