How to add parameter for 'In' clause
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
My Sql statement looks like this:
SELECT * FROM TBL_MyTable WHERE ID in (1,5,9,10,5248)
I want to use parameterized SQL command, how can I add the parameter value to it? This is what I have so far:
cmd.CommandText = "SELECT * FROM TBL_MyTable WHERE ID in @ID"
cmd.Parameters.Add("@ID", SqlDbType.Int.Int).Vlaue = "(1,5,9,10,5248)";but its not working, any suggestions? Thanks.
-
My Sql statement looks like this:
SELECT * FROM TBL_MyTable WHERE ID in (1,5,9,10,5248)
I want to use parameterized SQL command, how can I add the parameter value to it? This is what I have so far:
cmd.CommandText = "SELECT * FROM TBL_MyTable WHERE ID in @ID"
cmd.Parameters.Add("@ID", SqlDbType.Int.Int).Vlaue = "(1,5,9,10,5248)";but its not working, any suggestions? Thanks.