Answers for "select date from timestamp mysql"

SQL
4

mysql timestamp to date

-- Use the FROM_UNIXTIME() function in MySQL
select from_unixtime(timestamp) from my_tbl;
Posted by: Guest on October-14-2020
0

get date from timestamp in mysql

SELECT DATE_FORMAT('2013-11-26 01:24:34', '%Y-%m-%d');
> 2013-11-26
Posted by: Guest on July-20-2021

Code answers related to "select date from timestamp mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language