@Query(value = "SELECT a.city city,sum(m.page_view) view from t_ques m " +
"LEFT JOIN attractions a on m.spot_name=a.name where m.ques_time<= ?1 and a.province_code=?2 GROUP BY a.city ORDER BY view desc", nativeQuery = true)
List<Map<String, Object>> getHotCity(Date date, String pcode);