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.
调用时如何更改数据库中日期+时间的格式?
目前是:
YYYY-MM-DD Days:HH:MM
但我需要它是:
DD-MM-YYYY Days:HH:MM
我试过这种方法
FORMAT(s.date, 'DD-MM-YYYY')
但它给了我这样的东西:
20,130,618,232,643
因为我认为它包括时间。
使用DATE_FORMAT(date, format):
DATE_FORMAT(date, format)
DATE_FORMAT(s.date,'%d-%m-%Y')