How can we use a Java array values in the IN clause of an SQL statement?
Example :
String[] names={"Abc","Bac","lol"};
String query= select * from Table1 where name in (using the Names array as a look up)
How can we use a Java array values in the IN clause of an SQL statement?
Example :
String[] names={"Abc","Bac","lol"};
String query= select * from Table1 where name in (using the Names array as a look up)