What is the syntax of SQLite SAVEPOINT statement?

101. What is the syntax of SQLite SAVEPOINT statement?

  1. SAVEPOINT savepoint_name;
  2. SAVEPOINT name;
  3. SAVEPOINT;
  4. None of the above

Answer: A) SAVEPOINT savepoint_name;

Explanation:

The syntax of SQLite SAVEPOINT statement is:

SAVEPOINT savepoint_name;

Comments and Discussions!

Load comments ↻






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