How to select only date from a DATETIME field in MySQL?

前端 未结 16 2131
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 04:37

I have a table in the MySQL database that is set up with DATETIME. I need to SELECT in this table only by DATE and excluding the time.

How d

16条回答
  •  忘掉有多难
    2020-11-28 04:56

    you can use date_format

    select DATE_FORMAT(date,'%y-%m-%d') from tablename
    

    for time zone

    sql2 = "SELECT DATE_FORMAT(CONVERT_TZ(CURDATE(),'US/Central','Asia/Karachi'),'%Y-%m-%d');"
    

提交回复
热议问题