Extracting only date from datetime field (mysql) and assigning it to php variable

前端 未结 3 1319
礼貌的吻别
礼貌的吻别 2021-02-08 19:31

I am unable to assign only date to a php variable from datetime field of a MySQL table. I am using PHP 4, I know how to do it in PHP 5.

Can

3条回答
  •  别跟我提以往
    2021-02-08 20:04

    There is a link I find extremely useful when it comes to date manipulations: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html

    one can easily find the solution there:

    SELECT *, DATE(Invdate) as Inv_date ...
    

提交回复
热议问题