問題
Rails コンソールで以下のようにしたらエラー
> Hoge.select(:year_month).uniq Hoge Load (0.3ms) SELECT DISTINCT year_month FROM `hoges` ActiveRecord::StatementInvalid: Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'year_month FROM `hoges`' at line 1: SELECT DISTINCT year_month FROM `hoges`
解決策
Hoge.select("`year_month`").uniq
エラー出なくなった。とりあえずオケ。