I need to devise a subqeury to select the rows having matching values in a column.
Example
Select * from person where first_name in ('Java','SQL','Oracle');
However this list inside the paranthesis can be big , even upto 30,000 values. I will be reading the values from a file and will be passing it inside this the paranthesis. However I thought there might be a limitation to the number of values that I can provide inside the paranathesis. Is there an optimal solution to address this scenario without creating and loading a new table with data?
EDIT: Thanks for your responses. Is the below query an option to be considered -
Select * from person where first_name like 'Java' or first_name like 'SQL' or first_name like 'Oracle';
Thanks.