0 votes
in Sql by

Which of the following SQL statements is used to create a temporary table in SQLite?

a) CREATE TEMPORARY TABLE

b) CREATE TABLE TEMPORARY

c) TEMPORARY TABLE

d) None of the above

1 Answer

0 votes
by

Answer: a) CREATE TEMPORARY TABLE

Explanation: The CREATE TEMPORARY TABLE statement is used to create a temporary table in SQLite.

...