SELECT * FROM `record_card` where unix_timestamp(rec_time) BETWEEN unix_timestamp('2015-9-14 14:03:45') and unix_timestamp('2015-12-14 14:03:45') ; between 一定要 從 小時間 到 大時間 SELECT * FROM `record_card` where unix_timestamp(rec_time) = unix_timestamp('2015-10-14 14:03:45');
|
|