欢迎来到福编程网,本站提供各种互联网专业知识!

数据库的日期格式转换

发布时间:2006-10-09 作者: 来源:转载
只要在convert中指定日期格式的代号就够了,如:selectconvert(char(20),getdate(),101)selectemp_id,convert(char(20),hire_dt,101)fromemployee-----------------------------------------------------日期格式代号-----------------------
只要在convert中指定日期格式的代号就够了,如:

select convert(char(20),getdate(),101)

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

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

日期格式代号

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

04/05/2000101

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

2000.04.05102

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

05/04/2000103

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

05.04.2000104

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

05-04-2000105

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

05 Apr 2000106

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

Apr 05, 2000107

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

11:33:24108

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

Apr 5 2000 11:33:24109

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

04-05-2000110

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

2000/04/05111

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

20000405112

相关推荐