0
Can we use min or max function with count function? In a single query on a column of a table
3 Respuestas
0
hello my dear friend min or max function returns only single value ex if your column consist id 1 to 10 then your query is
select min(id) from mytable
result is 1
select max(id) from mytable
result is 10
so u don't have use count function with min or max function
0
yes you can use upto 2 levels and make sense using count on max or min when use have used group by clause.
0
Yes u can