tags:

views:

73

answers:

1

How can we pass an Array to a Stored Procedure in MySQL 5.1 so that I can use it like:

Select column1
FROM table
where column2 IN in_array

Thanks

A: 

See this question: Parameterizing a SQL IN clause.

Bill Karwin