mysql limit inside group?

后端 未结 8 684
粉色の甜心
粉色の甜心 2021-01-13 07:35

I want to limit the size of records inside a group, and here is my trial, how to do it right?

mysql> select * from accounts limit 5 group by type;
         


        
8条回答
  •  一向
    一向 (楼主)
    2021-01-13 08:01

    Group by is used for aggregate functions (sums, averages...)

    Is allows you to split the aggregate result into groups. You have not used one of these functions.

提交回复
热议问题