Hi, I have a typical problem here ,I am designing a stored procedure this stored procedure takes parameter say location, these parameter will be passed from front end by the user itself; consider: location can be CA, OH , NJ, NY, WA etc.(there can be n-number of locations sent by the user) Now I have a table with n-number of user records each residing in different location. so basically I have to perform A seach in this table . SELECT * FROM table1 WHERE location= ? As I said the number of locations sent by the user is not known( dynamic) ,so how should I implement the where condition? Any help shall be appreciated