Unix time to Human time
I have worked on some applications that are compatible with multiple different relational database systems. But data types often have subtle differences between RDBMSs.
As a result, a data model design decision I've inherited (more than once!) is that timestamps would be stored as numbers rather than dates. Specifically as Integer data types to store seconds (or milliseconds) offset from Unix Epoch.
The applications usually have no problems with the conversion. But when providing support, humans prefer to think in terms of "Thursday, October 7, 2021 1:49:49 PM" instead of "1633614589" (or "1633614589000")
Here is how to convert this data in SQL.
MySQL:
use the built-in conversion functions from_unixtime() and unix_time() like so:
SELECT from_unixtime(myTimeStampInt) FROM mytable
WHERE myTimeStampInt < unix_time('2021-10-01 12:00:00');