Home » MYSQL » Delete Query » Question
  1. What is xyz in the following statement?
    DELETE FROM Employee WHERE Emp_id= 0012;
    1. database name
    2. row name
    3. table name
    4. column name
    5. None of these
Correct Option: C

The operation being performed in the statement is the ‘DELETE’. The table name is ‘xyz’ and column name is ‘abc’. When this statement is executed, rows having abc value equal to 5 get deleted.



Your comments will be displayed only after manual approval.