I am having query as follows which will get multiple data at a time but I don't know how to write a stored procedure for this - can anyone help me?
In code I am writing this
string deleteSQL = "Select File_Data from tblachmaster WHERE Id IN (" + gvIDs.Substring(0, gvIDs.LastIndexOf(",")) + ")";
This instead of writing like this i have to use stored procedure to execute
This is my query
Select File_Data
From tblachmaster
Where Id IN (1,2,3, and so on);