Zoltan Demant
05/26/2025, 9:50 AMWHERE endTime IS NOT NULL
I get identical behavior between the two.
active:
SELECT *
FROM sessionSql
WHERE endTime IS NULL
ORDER BY startTime;
recent:
SELECT *
FROM sessionSql
WHERE endTime IS NOT NULL
ORDER BY endTime DESC
LIMIT :count;
hfhbd
05/26/2025, 9:52 AMZoltan Demant
05/26/2025, 9:53 AMhfhbd
05/26/2025, 9:56 AM