Home »
MCQs »
Transact-SQL (T-SQL) MCQs
Which of the following commands is used if you want to delete the row from a table?
9. Which of the following commands is used if you want to delete the row from a table?
- DROP FROM table_name where condition
- DROP FROM TABLE table_name
- DELETE FROM TABLE table_name
- DELETE FROM table_name where condition
Answer: D) DELETE FROM table_name where condition
Explanation:
DELETE FROM table_name where condition command is used if you want to delete the row from a table.