Home » MYSQL » Delete Query » Question
  1. What is abc in the following statement?
    DELETE FROM Student WHERE Student_id= 0050;
    1. server name
    2. column name
    3. database name
    4. table name
    5. None of these
Correct Option: D

The ‘DELETE’ operation is being performed in the statement. The table names are ‘x’ and ‘y’. The column name is ‘col’. The rows from left join of x and y get deleted according to the condition given.



Your comments will be displayed only after manual approval.