Home  >  Q&A  >  body text

How to display only the lowest value from a result set (MYSQL)

I have the following statement:

select DATE(recieved_on) as Day, round (count(*) / 24)  AS 'average'
from message
where facility in ('FACID')
AND received on BETWEEN '2022-05-29 00:00:00' AND '2022-06-04 23:59:59'
GROUP BY DATE(received on);

It provides the following result set:

day average
date value
date value
date value
date value
date value
date value
date value

How to display only the lowest value in the result set instead of all 7 values?

P粉338969567P粉338969567154 days ago538

reply all(1)I'll reply

  • P粉790819727

    P粉7908197272024-04-07 16:45:30

    You just need to use order by and limit:

    select DATE(recieved_on) as Day, round (count(*) / 24) AS 'average'
    from message
    where facility in ('FACID') AND received on BETWEEN '2022-05-29 00:00:00' AND '2022-06-04 23:59:59'
    GROUP BY DATE(received on)
    order by average
    limit 1

    reply
    0
  • Cancelreply