DELETE
--=============================================[DELETE]==================================================================
--Delete statement is used to remove data from the table
--Delete specific data from a table
DELETE FROM Person.Contact
WHERE FirstName = 'Habib'
--Delete Entire data from the Table
DELETE FROM Table1
No comments:
Post a Comment