What is the syntax of SQLite DELETE statement?

89. What is the syntax of SQLite DELETE statement?

  1. DROP FROM table_name WHERE {CONDITION};
  2. DELETE OF table_name WHERE {CONDITION};
  3. DELETE TO table_name WHERE {CONDITION};
  4. 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};

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.