olisemalis
MIS
Hello,
I would like to have an sql query in a storeed procedure that returns some records from a table and then filter those records (after get them from a table) based in a list of values. What is the best way to achieve this?
For now I have this:
select fields from table weher field1="" and fieldn ="" and fieldx in (list of values) --> with this I´m getting frequent timeouts. Because the select without the list of values will return very few rows, I would like to apply the filter of the values list just after getting the rows from the select.
Thank you
Thank you
I would like to have an sql query in a storeed procedure that returns some records from a table and then filter those records (after get them from a table) based in a list of values. What is the best way to achieve this?
For now I have this:
select fields from table weher field1="" and fieldn ="" and fieldx in (list of values) --> with this I´m getting frequent timeouts. Because the select without the list of values will return very few rows, I would like to apply the filter of the values list just after getting the rows from the select.
Thank you
Thank you