1
select station_id,count(case_id) from emer_complaint group by station_id
上記のクエリは正しい結果を返します。しかし、私は今年のレコードを表示するこのクエリをしようとしています。そして、それはdate_time
のデータ型がTimestamp
あるORA-00904: "YEAR": invalid identifier
からレコードを表示する年式
select year(date_time)
,count(case_id)
from emer_complaint
group by year(date_time);
エラーを示しています。
ありがとうございます。
['to_char'](http://www.techonthenet.com/oracle/functions/to_char.php)が必要です。 'Year()'はOracleの関数ではありません。 – Ben
あなたの貴重な助けに感謝@Ben! –