Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello

I want Delet MULTI Rows FROM Sql With StoredProcedure.How I do?
Posted

1 solution

delete from table where columname = value;
 
Share this answer
 
Comments
tree1371 22-Mar-13 2:12am    
I want to delete multiple records simultaneously.
_Maxxx_ 22-Mar-13 2:17am    
delete from table where columname = value

will delete all records 'simultaneously' from table where the value of columname is equal to value
Mohan Subramanian 22-Mar-13 2:53am    
hi,
if u want to delete row by row. u can use cursor or where columname = value

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900