Anyone have an authoritative answer for which is more performant?
GROUP BY
YEAR(FROM_UNIXTIME(col))
/* or */
GROUP BY
EXTRACT(YEAR FROM FROM_UNIXTIME(col))
I found this SO post, which was asking a more general question, with performance as an aside, but didn't find anything authoritative, only anecdotal.