Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用后续过程来显示 mysql 表中的日期:
<? echo $rrow[encoded_date]; ?>
现在编码日期单元格的格式为: 2013-03-20 01:52:39 。
我的问题是如何只提取没有时间的日期。
你可以用 PHP 做到这一点:
$yourDateTime = "2013-03-20 01:52:39"; date('Y-m-d', strtotime($yourDateTime));
您可以使用DATE_FORMAT()
DATE_FORMAT()
SELECT DATE_FORMAT(dateColumn, '%Y-%m-%d') encoded_date