Hello,
I'm trying to use a select record in Crystal Report.
when I put a simple condition, I have the result quickly
{INVENTORY_PART.PART_NO} = {?PART_NO}
=> when I look at the SQL query in Crystal I have this select condition right mentionned.
when I want to use the IN condition it reduces the speed of the query
{INVENTORY_PART.PART_NO} in {?PART_NO}
=> when I look at the SQL query in Crystal I haven't this select condition mentionned => it means that Crystal reads all the records (40000 records) to select the data after (?)
I have to do a select with the IN condition because my parameter {?PART_NO} will have these data : '123344','456789','963254'
How do I improve that ?