Login
Remember
Register
Ask a Question
How can we convert between Unix & MySQL timestamps?
0
votes
asked
Jan 14, 2024
in
Sql
by
AdilsonLima
How can we convert between Unix & MySQL timestamps?
mysql-interview-qeustions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14, 2024
by
AdilsonLima
UNIX_TIMESTAMP is the command which converts from MySQL timestamp to Unix timestamp
FROM_UNIXTIME is the command which converts from Unix timestamp to MySQL timestamp.
...