SQL Delete
It is use for delete record from database.
DELETE From table_name
where Condition.
Delete all record from Customer Table.
DELETE FROM Customer.
Delete "abc" record from Customer table.
DELETE FROM Customer
where CustomerName ='abc'
I have shared all Topics about ASP.NET MVC and JQUERY
DELETE From table_name
where Condition.
DELETE FROM Customer.
Delete "abc" record from Customer table.
DELETE FROM Customer
where CustomerName ='abc'
Comments
Post a Comment