-
abc in the following statement is ___________.
DELETE FROM xyz WHERE abc = 5;
-
- table name
- database name
- column name
- row name
- None of these
Correct Option: C
Here, the operation that is being performed in the statement is the ‘DELETE’ operation. The table name is ‘xyz’ and column name is ‘abc’. The rows having abc value equal to 5 get deleted.