由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - Oracle 求助
相关主题
ORACLE error code 04031I'm waiting for your oracle
求帮忙recover deleted rows in oracleHelp!--How to transfer string to Date(mm-dd-yyyy hh24:mi:ss) in Access?
Error Code 01034?A wield thing in Oracle DB
一道题 PL/SQL请帮忙在PL/SQL里面执行下面的计算,一个笔记软件破解用的
oracle help?怎么写个query 把输出变成横排.
Oracle新手请教一个问题SQL问题(有包子)
SQL Server - convert datetime to a string YY-MM-DD HHSQL, recruiter发过来的面试题 (转载)
Need help with an oracle SQL expressionOracle date format
相关话题的讨论汇总
话题: oracle话题: sgt话题: sysdate话题: dy话题: mon
进入Database版参与讨论
1 (共1页)
x****g
发帖数: 4
1
1. Oracle 里单引号怎么输入? (这个问题好象以前有人问过, 我找不到了)
2. 怎么让 to_char(sysdate,...) 打印出这样的格式: Thu Dec 14 19:03:24 SGT 2000
就是 'DY Mon dd HH24:MI:SS ??? YYYY', Oracle 有时区的支持吗?
3. 如果 Oracle 没有时区支持, 我直接把 SGT,GMT 等字打上去, 怎么打?
文档里写单引号就可以了, 可我怎么也试不出来.
SQL> select to_char(sysdate,'DY Mon dd HH24:MI:SS ''''SGT'''' YYYY') from dual;
select to_char(sysdate,'DY Mon dd HH24:MI:SS ''''SGT'''' YYYY') from dual
*
ERROR at line 1:
ORA-01821: date format not recognized
只有这个能用:
select concat(concat(to_cha
p****s
发帖数: 3184
2

This is actually a general SQL question. Just repeat ' once.
It seems no.
use || operator may be better
to_char(sysdate,'DY Mon dd HH24:MI:SS ')||'SGT'||to_char(sysdate,' YYYY')
or use DECODE expression to convert timezone numbers to names, and vice versa.

【在 x****g 的大作中提到】
: 1. Oracle 里单引号怎么输入? (这个问题好象以前有人问过, 我找不到了)
: 2. 怎么让 to_char(sysdate,...) 打印出这样的格式: Thu Dec 14 19:03:24 SGT 2000
: 就是 'DY Mon dd HH24:MI:SS ??? YYYY', Oracle 有时区的支持吗?
: 3. 如果 Oracle 没有时区支持, 我直接把 SGT,GMT 等字打上去, 怎么打?
: 文档里写单引号就可以了, 可我怎么也试不出来.
: SQL> select to_char(sysdate,'DY Mon dd HH24:MI:SS ''''SGT'''' YYYY') from dual;
: select to_char(sysdate,'DY Mon dd HH24:MI:SS ''''SGT'''' YYYY') from dual
: *
: ERROR at line 1:
: ORA-01821: date format not recognized

x****g
发帖数: 4
3
~~~~~~~~~~~~~~~~
what is this? how to get it?
p****s
发帖数: 3184
4

http://www.twinsun.com/tz/tz-link.htm
check tzcode and tzdata. especially usno1998 in tzcode
I can tell you know how to sqlload those things into oracle's table.

【在 x****g 的大作中提到】
: ~~~~~~~~~~~~~~~~
: what is this? how to get it?

1 (共1页)
进入Database版参与讨论
相关主题
Oracle date formatoracle help?
老板的无理要求!(希望熟悉Oracle的朋友指点)Oracle新手请教一个问题
请教一个有关SQL concat的问题SQL Server - convert datetime to a string YY-MM-DD HH
菜鸟请教一个关于oracle里日期的问题Need help with an oracle SQL expression
ORACLE error code 04031I'm waiting for your oracle
求帮忙recover deleted rows in oracleHelp!--How to transfer string to Date(mm-dd-yyyy hh24:mi:ss) in Access?
Error Code 01034?A wield thing in Oracle DB
一道题 PL/SQL请帮忙在PL/SQL里面执行下面的计算,一个笔记软件破解用的
相关话题的讨论汇总
话题: oracle话题: sgt话题: sysdate话题: dy话题: mon