0 votes
in Sql by

Which of the following statements is true about SQLite views?

a) A view is a virtual table that does not actually exist in the database.

b) A view is created using a SELECT statement.

c) A view can be used to simplify complex queries.

d) All of the above.

1 Answer

0 votes
by

Answer: d) All of the above.

Explanation: A view is a virtual table that does not actually exist in the database, and it is created using a SELECT statement. A view can be used to simplify complex queries and provide a simpler interface to the underlying data.

...