-
‘x’ in the following statement is ____________.
DELETE FROM x USING x LEFT JOIN y ON x.col = y.col;
-
- database name
- column name
- server name
- table name
- 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.