我怎樣才能讓MySQL記錄發送比從HTML中的GET變種像1386632264時間戳更大? (PHP和MySQL)MySQL和HTML時間戳
MySQL的時間戳是current_time_stamp
WHERE time>1386632264
不工作
下面是該查詢
select ua.user_id as member, ua.post_id, pa.user_id, pa.type,
pa.time, CONCAT(u.first_name,' ',u.last_name) as name,u.thumbnail
from user_activity ua
right join post_activity pa on ua.post_id=pa.post_id
right join users u on pa.user_id=u.user_id
where ua.user_id=6 and time<1386632264
是什麼類型的字段'time'? – BenM
MySQL的時間戳 – user3038421
寫代碼,你試過嗎? –