私は次のようなクエリを持っています:
select * from posts p where p.post like '%cadillac%' ORDER BY p.upvotes DESC,
p.unix_timestamp DESC LIMIT 20
ここで、配列をループしながら、最小値を見つける必要がありunix_timestamp
ます。何かのようなもの:
$counter = 0;
while($row = $result->fetch_assoc()){
// what do i do here to find the minimum timestamp value
$counter = $counter + 1;
}
お知らせ下さい。