数据库的日期格式转换
作者:bea
只要在convert中指定日期格式的代号就够了,如: select convert(char(20),getdate(),101) select emp_id,convert(char(20),hire_dt,101) from employee ----------------------------------------------------- 日期格式代号 -------------------- ----------- 04/05/2000101 --------
只要在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
有用 |
无用
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
猜你喜欢
您可能感兴趣的文章:
- 基于mysql的bbs设计(一)
- 基于mysql的bbs设计(二)
- 基于mysql的bbs设计(三)
- 支持oicq头像的留言簿(一)
- NT IIS下用ODBC连接数据库
- 怎样在UNIX系统下安装php3
- 怎样在UNIX系统下安装MySQL
- 关于文本留言本的分页代码
- 支持oicq头像的留言簿(二)
- 一个ubbcode的函数,速度很快.
- PHP中动态HTML的输出技术
- 也谈截取首页新闻 - 范例
- PHP4实际应用经验篇(6)
- PHP4实际应用经验篇(7)
- PHP4实际应用经验篇(9)
- PHP4实际应用经验篇(8)
- 一个简单的MySQL数据浏览器
- PHP生成便于打印的网页
- PHP4实际应用经验篇(5)