Home > Backend Development > PHP Tutorial > 数据库的日期格式转换

数据库的日期格式转换

WBOY
Release: 2016-06-01 14:30:41
Original
1163 people have browsed it
只要在convert中指定日期格式的代号就够了,如:

select convert(char(20),getdate(),101)
select emp_id,convert(char(20),hire_dt,101) from employee


-----------------------------------------------------

日期格式     代号
-------------------- -----------
04/05/2000     101

-------------------- -----------
2000.04.05     102

-------------------- -----------
05/04/2000     103

-------------------- -----------
05.04.2000     104

-------------------- -----------
05-04-2000     105

-------------------- -----------
05 APR 2000     106

-------------------- -----------
Apr 05, 2000     107

-------------------- -----------
11:33:24      108

-------------------- -----------
Apr 5 2000 11:33:24   109

-------------------- -----------
04-05-2000     110

-------------------- -----------
2000/04/05     111

-------------------- -----------
20000405      112
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template