Home » MYSQL » Mysql Setup » Question
  1. abc in the following statement is ___________.
    DELETE FROM xyz WHERE abc = 5;
    1. table name
    2. database name
    3. column name
    4. row name
    5. 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.



Your comments will be displayed only after manual approval.