I have a stored procedure that runs a simple SELECT query. <br>It basically looks like this:<br><br>CREATE PROCEDURE sp_family @fam_ids varchar(255) AS<br> SELECT fam_id, name, address<br> FROM family <br> WHERE fam_id in ( @fam_ids )<br><br>In VB I construct a string of fam_ids that looks like this:<br>"'100','101','432'"<br>I want to pass that string to the stored procedure to use in the IN(@fam_ids) statement, but it doesn't work. It runs, but it doesn't return any records. I'd pass them as an array, but SQL Server doesn't allow that either. There must be a way to do this. Anyone?