更改 MYSQL 日期格式

Change MYSQL date format(更改 MYSQL 日期格式)
本文介绍了更改 MYSQL 日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 MYSQL 中有一个表,其中 3 列有日期,而且它们的格式不符合要求.

I have a table in MYSQL of which 3 columns have dates and they are formatted in the not desired way.

目前我有:mm/dd/yyyy,我想将这些日期更改为 dd/mm/yyyy.

Currently I have: mm/dd/yyyy and I want to change those dates into dd/mm/yyyy.

表名是 Vehicles,列名是:

Table name is Vehicles and the columns names are:

CRTD
INSR
SERD

推荐答案

您当前列的数据类型不是 date 对吗?您需要先使用 STR_TO_DATE() 将其转换为日期,然后再转换回字符串

Your current datatype for your column is not date right? you need to convert it to date first using STR_TO_DATE() and convert back to string

SELECT DATE_FORMAT(STR_TO_DATE(colName, '%c/%d/%Y'), '%d/%c/%Y')
FROM table1

这篇关于更改 MYSQL 日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)