Lets assume the below table:
as schema:
ID,NAME,Country
and my partition key is country
.
If my query is like:
select * from table where id between 155555756 to 10000000000;
The partition will not work in that case, right? .
On a simple note .What if I do not use partition key in my query . So table full scan will be there, right?