I actually ran this code :
SELECT *
FROM table
WHERE (stop >= now( ) AND now() < stop);
I also tried:
SELECT *
FROM table
WHERE stop between now( ) AND stop;
Both of the queries gave the same results. Two records one of the results had a stop datetime from June 4. This is NOT what I was looking for.
Any ideas on how to get the info?