Thursday 10 March 2016

Delete Statement

Delete statement allows you to delete rows from the existing table.
Example
Delete From EMP_DATABASE
Where EMP_NAME ='Ramneek'
To delete all records
Delete * From EMP_DATBASE (Only Records deleted not Table)

No comments:

Post a Comment