InterviewSolution
Saved Bookmarks
| 1. |
Charvi wants to delete the records where the "First Name" is "Rama" in the 'Emp' Table. She has entered the following SQL statement. An error is being displayed. Rewrite the correct statement. DELETE 'Rama' FirstName From Emp; |
|
Answer» DELETE FROM Emp where First Name = "Rama" |
|