I am writing a Client Server Application now when the Client sends a command to the Server the Record in the SQL Database is updated and On Update a Timestamp is set on a field. But now I want to read all the Users in the SQL Database that where online in the last hour with the Timestamp.
So this is how far I am:
SELECT username FROM users WHERE lastonline...
lastonline is the field with the timestamp of the users last update. I now have no Idea how to check if he was online in the last hour.
I thank you for you help.