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 SELECT 中格式化日期,其中格式基于 php Date 函数。
我有一个 mysql 日期列,我想运行一个查询,它将以 php 日期格式(d/m/y)返回日期?
谢谢
尝试使用DATE_FORMAT这样的功能:
DATE_FORMAT
DATE_FORMAT(NOW(),'%d/%m/%Y')