1.

The command to remove rows from a table ‘CUSTOMER’ is __________________(a) DROP FROM CUSTOMER(b) UPDATE FROM CUSTOMER(c) REMOVE FROM CUSTOMER(d) DELETE FROM CUSTOMER WHEREThis question was posed to me in exam.The query is from Basic SQL in division Laying the Foundation of SQL Server

Answer» CORRECT choice is (d) DELETE FROM CUSTOMER WHERE

For explanation I would say: The SQL DELETE Query is used to delete the existing records from a table. You can USE WHERE CLAUSE with the DELETE query to delete SELECTED ROWS.


Discussion

No Comment Found

Related InterviewSolutions