I'm trying to make a query to eliminate results in which the end time of the event is equal to 00:00:00, I made the query this way:
select nome, local, hora_inicio, hora_fim, data_inicio, data_fim
from agenda
where hora_fim <> 00:00:00;
PS: I also tried putting! = instead of < & gt ;, but it also did not work, it keeps returning events with end time equal to 00:00:00.
PS: The start-time and end-time fields are like time in the database.