Home >Database >Mysql Tutorial >Which punctuation mark can be used as a separator between MySQL date parts?
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!