Home  >  Article  >  Database  >  Which punctuation mark can be used as a separator between MySQL date parts?

Which punctuation mark can be used as a separator between MySQL date parts?

WBOY
WBOYforward
2023-09-07 15:21:021127browse

哪个标点符号可以用作 MySQL 日期部分之间的分隔符?

In this matter, MySQL allows us to use the most relaxed format to date. We can use any punctuation as separator between date parts. Some examples are as follows -

mysql> Select date ('2016/10/20');
+---------------------+
| date ('2016/10/20') |
+---------------------+
| 2016-10-20          |
+---------------------+
1 row in set (0.00 sec)

mysql> Select date('2016^10^20');
+--------------------+
| date('2016^10^20') |
+--------------------+
| 2016-10-20         |
+--------------------+
1 row in set (0.00 sec)

mysql> Select date ('2016@10@20');
+---------------------+
| date ('2016@10@20') |
+---------------------+
| 2016-10-20          |
+---------------------+
1 row in set (0.00 sec)

mysql> Select date ('2016+10+20');
+---------------------+
| date ('2016+10+20') |
+---------------------+
| 2016-10-20          |
+---------------------+
1 row in set (0.00 sec)

The above is the detailed content of Which punctuation mark can be used as a separator between MySQL date parts?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete