首页 > 编程 > PHP > 正文

数据库的日期格式转换

2019-09-08 23:11:51
字体:
来源:转载
供稿:网友
只要在convert中指定日期格式的代号就够了,如:

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


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

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

-------------------- -----------
2000.04.05/t  102

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

-------------------- -----------
05.04.2000/t  104

-------------------- -----------
05-04-2000/t  105

-------------------- -----------
05 Apr 2000/t 106

-------------------- -----------
Apr 05, 2000/t 107

-------------------- -----------
11:33:24/t   108

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

-------------------- -----------
04-05-2000/t  110

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

-------------------- -----------
20000405/t   112
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表