What is the syntax of SQLite RELEASVE SAVEPOINT statement?

98. What is the syntax of SQLite RELEASVE SAVEPOINT statement?

  1. RELEASE SAVEPOINT savepoint_name;
  2. RELEASE savepoint_name;
  3. RELEASE name;
  4. RELEASE SAVEPOINT name;

Answer: B) RELEASE savepoint_name;

Explanation:

The syntax of SQLite RELEASE SAVEPOINT statement is:

RELEASE savepoint_name;

Comments and Discussions!

Load comments ↻






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