cancel
Showing results for 
Search instead for 
Did you mean: 

for hdb query, why is it fast when including where date>$date$

renbright
New Contributor II

when I query HDB, it is always faster using date>$date$?  $date$ could be .z.d-10000, which is much larger than my earliest date in KDB.

1 REPLY 1

rocuinneagain
Contributor III
Contributor III

Hi renbright - 

There are some posts showing how to embed code which will make your question more clear:

Can you share more complete example?

 

The second of these queries is faster because it reads less data:

//Retrieves data from all dates
select from table
//Retrieves only the last 5 days of data
select from table where date>(.z.d-5)