the table being queried has billions of records and the select query's where clause is based on non-indexed columns. So a normal select query does a full table scan & hence takes more time. I am trying to use parallel feature to see if it helps improving time. But wanted to know , if parallel will really help for Select queries on a single table with where clause on non-indexed columns ?
Example :
Select /*parallel(customer_data,4)*/ customer_id,name from customer_data where time_create >= :<min_time> AND customer_status='P'