Home >Database >Mysql Tutorial >Oracle 日期的一些简单使用

Oracle 日期的一些简单使用

WBOY
WBOYOriginal
2016-06-07 18:06:43749browse

学习了这么长的数据库,突然意识到自己对于数据库主外键的意义完全弄不懂,是唯一标识一条记录,是为连接查询服务的,这样的理解都不对,或不完全对。

1.intersect为取多个查询结果的交集;
2.查询两个基本时间段内表记录的SQL语句;
select * from shengjibiao t where t.createtime between to_date('2009-7-26','yyyy-MM-dd') and to_date('2009-7-29','yyyy-MM-dd')
--也可以用>,=,update shengjilogin t set t.starttime=to_date('2009-01-02 01:02:01','yyyy-mm-dd hh24:mi:ss') where t.username='220819'
3.获得两个指定日期,指定格式的时间之间相差的天数
select to_date('2009-04-01 13:02:01','yyyy-mm-dd hh24:mi:ss').add
-to_date('2009-03-08 13:02:01','yyyy-mm-dd hh24:mi:ss')
from dual
4.将指定时期,指定时间格式的Date类型加上月份数,然后再转换成字符串,很有用
查询出来的类型为date类型:select add_months(to_date('2009-07-27 02:31:11','yyyy-mm-dd hh24:mi:ss'),2)from dual
查询出来的类型为字符串类型:select to_char(add_months(to_date('2009-07-27 02:31:11','yyyy-mm-dd hh24:mi:ss'),2),'yyyy-mm-dd hh24:mi:ss') as terTime from dual
5.oracle数据库中substr函数的使用
select substr('chenyp',2,4) from dual
结果:heny
顺便学点:
学习了这么长的数据库,突然意识到自己对于数据库主外键的意义完全弄不懂,是唯一标识一条记录,是为连接查询服务的,这样的理解都不对,或不完全对。后来经过自己的冥思苦想,翻阅各种资料,突然又感觉自己对于数据库主外健有了深刻的理解,并且认为这次理解,是从本质意义上的理解,以后再也不会搞混淆了。虽然理解可能还很肤浅,但理解的方向是对的.
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn