我该怎么做select count(artc_id) as cval, max(srt_id) as maxval, artc_title from table where artc_pub = 1
所以我可以得到如下结果:
cval | maxval | artc_title | artc_pub
-----------------------------------------
4 4 Title 1 1
Title 2 1
Title 3 1
Title 4 1
我的部分表格如下
artc_id | srt_id | artc_title | artc_pub
-----------------------------------------
1 1 Title 1 1
2 2 Title 2 1
3 3 Title 3 1
4 4 Title 4 1
1 5 Title 1 2
2 6 Title 2 2
我试过select count(artc_id) as cval, max(srt_id) as maxval, artc_title from table where artc_pub = 1
了,但这只给了我一行第一个标题。我想这里肯定不仅仅是一个普通的旧选择。
下面的所有答案都给了我这样的结果:
cval;maxval;artc_title
1 ; 1; Title 1
1 ; 2; Title 2
1 ; 3; Title 3
1 ; 4; Title 4
1 ; 5; Title 5
不像我在问题中提到的那样。