Bạn có thể sử dụng chức năng như sau:
select FROM_UNIXTIME(UNIX_TIMESTAMP(),'%a %b %d %H:%i:%s UTC %Y');
đầu ra sẽ là:
'Wed Feb 05 05:36:16 UTC 2014'
Trong truy vấn của bạn
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;
Để biết thêm thông tin, bạn có thể kiểm tra tài liệu: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html# Chức năng_from-unixtime
Bạn có thể xem sql fiddle: http://sqlfiddle.com/#!2/a2581/20357