Home »
MCQs »
SQLite MCQs
What is the syntax of SQLite DELETE statement?
89. What is the syntax of SQLite DELETE statement?
- DROP FROM table_name WHERE {CONDITION};
- DELETE OF table_name WHERE {CONDITION};
- DELETE TO table_name WHERE {CONDITION};
- DELETE FROM table_name WHERE {CONDITION};
Answer: D) DELETE FROM table_name WHERE {CONDITION};
Explanation:
The syntax of SQLite DELETE statement is:
DELETE FROM table_name WHERE {CONDITION};