Mysql:建表时将DATETIME的格式设置为'DD-MM-YYYY HH:MM:SS'

Mysql: Setup the format of DATETIME to #39;DD-MM-YYYY HH:MM:SS#39; when creating a table(Mysql:建表时将DATETIME的格式设置为DD-MM-YYYY HH:MM:SS)
本文介绍了Mysql:建表时将DATETIME的格式设置为'DD-MM-YYYY HH:MM:SS'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在谷歌搜索后,我找不到一种方法来创建一个带有 DATETIME 列的新表,默认格式设置为 'DD-MM-YYYY HH:MM:SS'

After googling around, I cannot find a way to create a new table with a DATETIME column with the default format set to 'DD-MM-YYYY HH:MM:SS'

我看到一个教程,它是在 phpmyadmin 中完成的,所以我怀疑我可以通过命令行使用 mysql 并在使用

I saw a tutorial in which it was done in phpmyadmin so I suspect that I could use mysql via command line and achieve the same thing when creating my new table with

CREATE TABLE ()

提前致谢

推荐答案

MySQL 以 'YYYY-MM-DD HH:MM:SS' 格式检索并显示 DATETIME 值."这是来自 mysql 站点.您只能存储这种类型,但您可以在需要显示时使用众多时间格式函数之一来更改它.

"MySQL retrieves and displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format." This is from mysql site. You can store only this type, but you can use one of the many time format functions to change it, when you need to display it.

Mysql 时间和日期函数

例如,这些函数之一是 DATE_FORMAT,可以这样使用:

For example, one of those functions is the DATE_FORMAT, which can be used like so:

SELECT DATE_FORMAT(column_name, '%m/%d/%Y %H:%i') FROM tablename

这篇关于Mysql:建表时将DATETIME的格式设置为'DD-MM-YYYY HH:MM:SS'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)