Hi,

I am writing a dynamic query in which i have to select a records depend upon the no. of values entered by user like:
select * from _table where _tableColumn IN (values entered by user)

the values entered come in this format: 456,465,123
bt if i pass this value in string format through a bind variable. The query is not working it is taking whole value as whole..

Please help me out.....