È possibile utilizzare la funzione come di seguito:
select FROM_UNIXTIME(UNIX_TIMESTAMP(),'%a %b %d %H:%i:%s UTC %Y');
l'output sarà:
'Wed Feb 05 05:36:16 UTC 2014'
Nella tua domanda
select COUNT(DISTINCT devices) AS "Devices",
FROM_UNIXTIME(measure_tab.time,'%a %b %d %H:%i:%s UTC %Y') as d from measure_tab where
measure_tab.time >= 1375243200 and
measure_tab.time < 1375315200;
Per maggiori informazioni puoi controllare la documentazione:http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_from-unixtime
Puoi vedere sql fiddle:http://sqlfiddle.com/#!2/a2581/20357