In my table I have inserted values from multiple dropdowns now I want to pass those values in where clause of my c# code how to do it please help
SqlCommand command = new SqlCommand("select distinct comp_type from master_office_complaint
where comp_id='" + reader["marked_officer"]+ "'", conn);
Here marked_officer
column contains multiple values.