- or download this
my @uptimes = qw(1 2 3 4 5 1 2 3 4 1 2 3 4 5 6);
...
or $_ < $#uptimes
and $uptimes[$_] > $uptimes[$_+1];
}
- or download this
SELECT uptime_id as uid, uptime_value
FROM uptime
WHERE uptime_value > (SELECT uptime_value
FROM uptime
WHERE uptime_id = uid+1);
- or download this
SELECT MAX(uptime_value) FROM uptime;