Oracle数据库中怎么查询

Oracle数据库中怎么查询,第1张

with tmp(c_id,c_name,c_up) as 

(

select 1,'四川省',0 from dual union all

select 2,'河北省',0 from dual union all

select 3,'河南省',0 from dual union all

select 4,'成都市',1 from dual union all

select 5,'绵阳市',1 from dual union all

select 6,'南充市',1 from dual union all

select 7,'双流县',4 from dual union all

select 8,'高新区',4 from dual)

select  from tmp 

where c_up=0 

start with c_name='成都市' 

connect by prior c_up=c_id

select  from 表名 where to_date(ip_date,'yyyymmdd') between to_date('20190204','yyyymmdd') and to_date('20190209','yyyymmdd') and substr(ip_time,12,8) between '00:00:00' and '08:00:00'

以上就是关于Oracle数据库中怎么查询全部的内容,包括:Oracle数据库中怎么查询、Oracle数据库查询某段时间内时间段的数据、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9740529.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存