六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 281|回复: 0

informix 数据库 时间、日期简单操作

[复制链接]

升级  44%

4

主题

4

主题

4

主题

童生

Rank: 1

积分
22
 楼主| 发表于 2013-1-30 02:09:25 | 显示全部楼层 |阅读模式
today  当前日期 (date)
sysdate 、current 当前时间(datetime)
 

select sysdate from test_table;-- 系统当前时间select current from test_table;-- 系统当前时间select TODAY-1 from test_table;-- 系统前一天日期select sysdate - 1 UNITS year from test_table;-- 系统前一年时间select sysdate - 1 UNITS month from test_table;-- 系统前一月时间select sysdate - 1 UNITS day from test_table;-- 系统前一天时间select sysdate - 1 UNITS hour from test_table;-- 系统前一小时时间select sysdate - 1 UNITS minute from test_table;-- 系统前一分钟时间select sysdate - 1 UNITS second from test_table;-- 系统前一秒时间select date (sysdate - 1*interval(24) hour to hour) from test_table;-- 系统前一天时间
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表