0

我正在尝试为我的一个朋友解决 Netezza 中的一个问题。我的朋友正在尝试在 Netezza 中做一些非常简单的事情:

select * 
from 
test
where 
ID1 = 12345
and date >= 12/1/2012 and event date <= 12/31/2012
and ID2 in
(x1, x2, ..., x150000)

此查询永远不会返回。

在 Oracle 中,我们可以尝试这样的事情:

/*******************************************************************/
/*To reduce the size of the table...*/

create table t_test as
select * 
from 
test
where 
ID1 = 12345
and date >= 12/1/2012 and event date <= 12/31/2012;

/*To make the search on ID2 faster...*/
create index i_ID2 on t_test (ID2);

select * 
from 
t_test
where 
ID2 in
(x1, x2, ..., x150000)

/*Alternative: People say "IN" may be very inefficient at times...*/

select * 
from 
t_test
where 
ID2 = x1
or ID2 = x2
.
.
.
or ID2 = x150000
/*******************************************************************/

但是,这在 Netezza 中是不可能的,因为它没有任何索引概念。

我该如何解决这个问题?

谢谢并恭祝安康,

4

2 回答 2

2

当你运行它时,“and date >= 12/1/2012 and event date <= 12/31/2012”这一行到底是如何编码的?你真的有一个名为“日期”的列吗?“事件日期”中是否缺少下划线?

12/1/2012 计算为整数零,而不是日期。利用:

日期'2012-12-01'
日期'2012-12-31'

或 to_date('12/1/2012', 'mm/dd/yyyy') 像 Oracle

于 2013-02-17T23:19:45.643 回答
0

试试这个方法

select * 
from 
test
where 
ID1 = 12345
and eventdate BETWEEN DATE('12/1/2012') DATE('12/31/2012')
and ID2 in
(x1, x2, ..., x150000)
于 2015-06-08T19:55:53.810 回答