Home » MYSQL » Mysql Setup » Question
  1. ‘x’ in the following statement is ____________.
    DELETE FROM x USING x LEFT JOIN y ON x.col = y.col;
    1. database name
    2. column name
    3. server 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.