0

この問題は何ですか?

select inst.id            
,      inst.type          as "TypeOfInstall"
,      count(inst.id)     as "NoOfInstall"
from   dm_bsl_ho.installment inst
group  by inst.type
4

2 に答える 2

1

グループ機能で単一機能を使用することはできません。count単列機能との混合のように。

group by次の関数を含める必要があります。

 select inst.type          as "TypeOfInstall"
 ,      count(inst.id)     as "NoOfInstall"
 from   dm_bsl_ho.installment inst
 GROUP BY inst.type;
于 2013-08-20T10:41:14.683 に答える