How to select date and time without the seconds in mysql? -
How to select date and time without the seconds in mysql? -
how select date , time without seconds in mysql column date value in table ? "yyyy-mm-dd hh:mm:ss" should "yyyy-mm-dd hh:mm"
select date_format(`date`, '%y-%m-%d %h:%i') `formatted_date` `table`;
mysql
Comments
Post a Comment