What Is The Syntax Of Sqlite Delete Statement #89
What is the syntax of SQLite DELETE statement?
This multiple choice question (MCQ) is related to the book/course gs gs118 Data Mining. It can also be found in gs gs118 SQLite MCQs - SQLite MCQs - Quiz No.9.
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};