Why is that when I search a row in my database, it ended up 0 results? In fact, there are rows that meet my search criterion when I view them manually, but the search button doesnt work as it is. Heres how

you can see there are rows that have ‘0000-00-00 00:00:00’ in them, but when I used the search feature, it ended up like this:

take note that Im entering it in the right field which is ‘AcctStopTime’.
TIA
You’re searching with
LIMIT 30 , 30.That will cause there to be no results if there as less than 30 results total. Try
LIMIT 0 , 30instead.