Necesito hacer un script Perl para poder filtrar los reportes de servicio que tengan una antigüedad de más de dos horas en el sistema y tengan un estatus "pendiente"
La tabla tiene un campo llamado "Indate" del tipo datetime que guarda la fecha y la hora en que se ingresó el reporte en el sistema y otro que se llama "estatus", que es un varchar.
Mi pregunta es: ¿se puede comparar esta fecha y hora con la fecha y hora actual del sistema y obtener la diferencia en horas?
Algo así
Using perl Syntax Highlighting
$sth = $dbh->prepare("SELECT * FROM reportes WHERE estatus='Pendiente' and Indate <= $now ");
$sth->execute();
$sth->execute();
Coloreado en 0.003 segundos, usando GeSHi 1.0.8.4
Saludos,
Caribesoft