由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - SQL Server - convert datetime to a string YY-MM-DD HH
相关主题
再请教大牛一个问题请问sql server里面怎么输出变量到文本文件?
date format转换问题请教select 跟 set 的区别?
一个关于T-SQL的问题问个查询问题。
转换成时间的格式 MS SQL有大侠知道怎么format下面这个query的时间么
convert datetime to ''Oracle 求助
SSRS report failing to display dataset stringHow to convert this datetime in SQL Server?
SQL, recruiter发过来的面试题 (转载)请教:sql, 同时得出count_lastweek & count_all
SQL问题(有包子)SSIS DYNAMIC EXCEL输出的问题
相关话题的讨论汇总
话题: getdate话题: datepart话题: varchar话题: dd话题: yy
进入Database版参与讨论
1 (共1页)
y****9
发帖数: 144
1
Googled and tested for a while, comp up with this method:
select cast(datepart(yy, getdate()) as varchar) + '-' +
cast(datepart(mm, getdate()) as varchar) + '-' +
cast(datepart(dd, getdate()) as varchar) + ' ' +
cast(datepart(hh, getdate()) as varchar)
Not sure this is the best idea in SQL Server. in Oracle it is easy:
select to_char('YY-MM-DD HH24', sysdate) from dual;
any suggestion? I am working on a query which need this conversion
Thanks,
s**m
发帖数: 1564
2
select substring(convert(char(23), getdate(), 120), 3,11)
select replace(substring(convert(char(23), getdate(), 120), 3,11), '-', '_')

[发表自未名空间手机版 - m.mitbbs.com]

【在 y****9 的大作中提到】
: Googled and tested for a while, comp up with this method:
: select cast(datepart(yy, getdate()) as varchar) + '-' +
: cast(datepart(mm, getdate()) as varchar) + '-' +
: cast(datepart(dd, getdate()) as varchar) + ' ' +
: cast(datepart(hh, getdate()) as varchar)
: Not sure this is the best idea in SQL Server. in Oracle it is easy:
: select to_char('YY-MM-DD HH24', sysdate) from dual;
: any suggestion? I am working on a query which need this conversion
: Thanks,

s**********o
发帖数: 14359
3
对啊,有现成的,还一个一个的转换,101,102,103,一直数下去
y****9
发帖数: 144
4

This works better for my purpose. Thank you!

【在 s**m 的大作中提到】
: select substring(convert(char(23), getdate(), 120), 3,11)
: select replace(substring(convert(char(23), getdate(), 120), 3,11), '-', '_')
:
: [发表自未名空间手机版 - m.mitbbs.com]

1 (共1页)
进入Database版参与讨论
相关主题
SSIS DYNAMIC EXCEL输出的问题convert datetime to ''
这题目啥意思啊?SSRS report failing to display dataset string
包子谢,怎么加个table到一个function里SQL, recruiter发过来的面试题 (转载)
for round() function in SQLSQL问题(有包子)
再请教大牛一个问题请问sql server里面怎么输出变量到文本文件?
date format转换问题请教select 跟 set 的区别?
一个关于T-SQL的问题问个查询问题。
转换成时间的格式 MS SQL有大侠知道怎么format下面这个query的时间么
相关话题的讨论汇总
话题: getdate话题: datepart话题: varchar话题: dd话题: yy