πŸ“Š MySQL
Q. How do you delete all rows from a table named `orders`?
  • (A) REMOVE FROM orders;
  • (B) DELETE ALL FROM orders;
  • (C) DELETE FROM orders;
  • (D) ERASE FROM orders;
πŸ’¬ Discuss
βœ… Correct Answer: (C) DELETE FROM orders;

Explanation: `DELETE FROM orders;` removes all records from the table.

Explanation by: Mr. Dubey
`DELETE FROM orders;` removes all records from the table.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
53
Total Visits
πŸ“½οΈ
9 mo ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
93%
Success Rate