I need to make a string with numbers able to work with a query in Oracle. Since the string with numbers is a string parameter (array) from the Java class going into the query, i need to convert string to Integer inside query.
select * from fl_users where id in ('224994, 226010, 225632, 224403, 224690, 224695, 225319')
How can i do it?