Oracle进行语言时间转换的方法

来源:爱站网时间:2022-08-03编辑:网友分享
你知道Oracle进行语言时间转换的方法分别是什么吗?为了帮助朋友们更好的解决问题,爱站技术频道小编在此分享了相关内容给大家查看,希望小编整理的文章能帮助到你解决问题。

c shell perl php下的日期时间转换: 秒数与人类可读日期 scalar localtime 与 seconds since `00:00:00 1970-01-01 UTC'
scalar localtime 26-byte string 与 seconds since `00:00:00 1970-01-01 UTC'
(1970年1月1日凌晨零点以来的秒数)
the number of seconds that have passed since the Epoch: 00:00:00 January 1, 1970, Coordinated Universal Time (UTC). 

c:
《Advanced Programming in the UNIX Environment: Second Edition》
简称《APUE》 Seciont 6.10 Figure 6.8. Relationship of the various time functions 说的清楚
#include <time.h>
time_t time(time_t *calptr);
struct tm *localtime(const time_t *calptr);
struct tm *gmtime(const time_t *calptr);
time_t mktime(struct tm *tmptr);
char *asctime(const struct tm *tmptr);
char *ctime(const time_t *calptr);
size_t strftime(char *restrict buf, size_t maxsize,
                const char *restrict format,
                const struct tm *restrict tmptr);

shell:
% date +%s
1128621784

% date -d "1970-01-01 UTC 1128621784 seconds"
Fri Oct  7 02:03:04 CST 2005

date -d "1970-01-01 UTC 1128621784 seconds" +"%Y-%m-%d %H:%M:%S"
2005-10-07 02:03:04

perl:
%  perl -e 'print scalar localtime 1128621784'
Fri Oct  7 02:03:04 2005

php:
date('Y-m-d H:i:s',time()); 

Oracle进行语言时间转换的方法想必朋友们都看明白了吧!在我们爱站技术频道网站有很多精彩好看的技术文章,想要获取这些资料,可以来网站翻阅查看,一定不会让你失望。

上一篇:oracle优化提升运行效率

下一篇:oracle递归性能提示分析

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载