| | |
Delete records of a MSSQL tableTo delete all records we can use simple delete command like this
Delete from members
This will remove all the records of members table of MSSQL database. We can also add some conditions to the query by adding a Where clause to delete a perticular record like this.
delete from member where userid ='admin2'
| |
| | |
|
|
|
|
|