我的数据类似于此类
@RunWith(SpringRunner.class)
@WebMvcTest(YourController.class)
@EnableSpringDataWebSupport // for Pageable resolve
public class YourControllerTest {
}
预期输出就像这样
Column A Column B
101 1001
101 1002
101 1003
101 1004
102 1001
102 1005
102 1006
101 1001
102 1001
答案 0 :(得分:1)
知道COUNT函数支持一个不同的参数
http://www.postgresqltutorial.com/postgresql-count-function/
select column_a , count(distinct column_b)
from f1
group by column_a