Create a custom practice set
Pick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizPick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizNo weekly quiz is published yet. Check the weekly page for the latest updates.
View Weekly PageAnswer: DROP
DROP TABLE removes the entire table structure and all data permanently; cannot be rolled back in most systems. DELETE removes rows (can use WHERE, can be rolled back). TRUNCATE removes all rows quickly but keeps table structure. DROP is a DDL command; DELETE/TRUNCATE are DML commands.