我有表格,列爲id
,title
,relation_key
。我想獲得count(*)
以及相應的relation_key
列的標題。ORA-00937:在oracle中不是單一羣組功能
我的表包含以下數據:
id title relation_key
55 title1111 10
56 title2222 10
57 MytitleVVV 20
58 MytitlleXXX 20
我想:
select title,count(*) from table where relation_key=10 group by title
但其只返回1行。我想標題的兩個記錄relation_key=10
它對我來說工作正常http://www.sqlfiddle.com/#!4/934d7/3 – jaychapani 2012-08-16 07:31:39