数据库时间日期格式化

在下表中,左列表示从 money smallmoney 转换为字符数据时的 style 值。express

值 输出0(默认值)小数点左侧每三位数字之间不以逗号分隔,小数点右侧取两位数,例如 4235.98。1小数点左侧每三位数字之间以逗号分隔,小数点右侧取两位数,例如 3,510.92。2小数点左侧每三位数字之间不以逗号分隔,小数点右侧取四位数,例如 4235.9819。优化

使用 CONVERT:get

CONVERT (data_type[(length)], expression [, style])io


select CONVERT(varchar, getdate(), 120 )
2004-09-12 11:06:08 date

select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),\'-\',\'\'),\' \',\'\'),\':\',\'\')
20040912110608 select

select CONVERT(varchar(12) , getdate(), 111 )
2004/09/12 数据

select CONVERT(varchar(12) , getdate(), 112 )
20040912 字符

select CONVERT(varchar(12) , getdate(), 102 )
2004.09.12 数字

select CONVERT(varchar(12) , getdate(), 101 )
09/12/2004 data

select CONVERT(varchar(12) , getdate(), 103 )
12/09/2004

select CONVERT(varchar(12) , getdate(), 104 )
12.09.2004

select CONVERT(varchar(12) , getdate(), 105 )
12-09-2004

select CONVERT(varchar(12) , getdate(), 106 )
12 09 2004

select CONVERT(varchar(12) , getdate(), 107 )
09 12, 2004

select CONVERT(varchar(12) , getdate(), 108 )
11:06:08

select CONVERT(varchar(12) , getdate(), 109 )
09 12 2004 1

select CONVERT(varchar(12) , getdate(), 110 )
09-12-2004

select CONVERT(varchar(12) , getdate(), 113 )
12 09 2004 1

select CONVERT(varchar(12) , getdate(), 114 )
11:06:08.177

以上是转载的,不过我当时须要的格式为年-月-日的,本身改了下,不知是不是最优化的方式,只是结果已经达到了,(*^__^*) 嘻嘻……  试试吧。。。select replace(CONVERT(varchar(12),getdate(),111 ),'/','-')

相关文章
相关标签/搜索