Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieve time from MySQL as HH:MM format

I used DATETIME datatype to store date and time in my Database. It saved date as

YY-MM-DD HH:MM:SS (2012-11-06 10:45:48)  

I can retrieve the time from database as HH:MM:SS format but I want to retrieve it in HH:MM format.

How can I do this?

like image 578
ѕтƒ Avatar asked Nov 06 '12 11:11

ѕтƒ


2 Answers

Check the DATE_FORMAT Function.

SELECT DATE_FORMAT(date_column, '%H:%i') FROM your_table
like image 178
xdazz Avatar answered Oct 09 '22 06:10

xdazz


You will want to use DATE_FORMAT():

select date_format(yourDateColumn, '%h:%i') yourTime
from yourtable

See SQL Fiddle with Demo

like image 37
Taryn Avatar answered Oct 09 '22 06:10

Taryn