oracle sql 分区查询语句_Oracle分区表跨分区查询数据为空

创建分区表的语句,PLATTIME是一个时间字段

ALTER TABLE TORDER MODIFY

PARTITION BY RANGE (PLATTIME)

(

partition p1801 values less than (to_timestamp('2018-01-01', 'YYYY-MM-DD')),

partition p1805 values less than (to_timestamp('2018-05-01', 'YYYY-MM-DD')),

partition p1808 values less than (to_timestamp('2018-08-01', 'YYYY-MM-DD')),

partition p1810 values less than (to_timestamp('2018-10-01', 'YYYY-MM-DD')),

partition p1812 values less than (to_timestamp('2018-12-01', 'YYYY-MM-DD')),

partition p1901 values less than (to_timestamp('2019-01-01', 'YYYY-MM-DD')),

partition p1902 values less than (to_timestamp('2019-02-01', 'YYYY-MM-DD')),

partition p1903 values less than (to_timestamp('2019-03-01', 'YYYY-MM-DD')),

partition p1904 values less than (to_timestamp('2019-04-01', 'YYYY-MM-DD')),

partition p1905 values less than (to_timestamp('2019-05-01', 'YYYY-MM-DD')),

partition p1906 values less than (to_timestamp('2019-06-01', 'YYYY-MM-DD')),

partition p1907 values less than (to_timestamp('2019-07-01', 'YYYY-MM-DD')),

partition p1908 values less than (to_timestamp('2019-08-01', 'YYYY-MM-DD')),

partition pmax values less than (maxvalue)

)ONLINE

UPDATE INDEXES;

在没有进行分区之前使用以下sql语句是可以查询到数据的,分区后再查询获取的数据为空

select * from TORDER where PLATTIME BETWEEN to_timestamp('2018-01-01', 'YYYY-MM-DD') and to_timestamp('2018-09-01', 'YYYY-MM-DD');

现需向Oracle DBA大神求助

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值