Charvi wants to delete the records where the "FirstName" 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;
Answers
Answered by
0
Answer:
delete from Emp where FirstName='Rama';
Explanation:
SQL statement is :
delete from <tablename> where <condition>;
hope this helps you!
Similar questions