Knowee
Questions
Features
Study Tools

Which of the following statement is true?Select one:a.Creating views can improve query response timeb.Views could be looked as an additional layer on the table which enables us to protect intricate or sensitive data based upon our needsc.Views are virtual tables that are compiled at run timed.All of the Mentioned

Question

Which of the following statement is true?Select one:a.Creating views can improve query response timeb.Views could be looked as an additional layer on the table which enables us to protect intricate or sensitive data based upon our needsc.Views are virtual tables that are compiled at run timed.All of the Mentioned

🧐 Not the exact question you are looking for?Go ask a question

Solution

The correct answer is d. All of the Mentioned.

Here's why:

a. Creating views can improve query response time - This is true because views store the result of a query and can therefore improve the response time of queries that are run frequently.

b. Views could be looked as an additional layer on the table which enables us to protect intricate or sensitive data based upon our needs - This is also true. Views can be used to restrict access to sensitive data in the underlying tables.

c. Views are virtual tables that are compiled at run time - This is true as well. Views are not physically stored in the database, but are generated at run time when a query is executed.

So, all of the statements are true.

This problem has been solved

Similar Questions

Which of the following is/are true about views?Question 4Select one or more:a.It can be a result of multiple joins.b.Can be used interchangeably with tables when retrieving datac.Created to limit access to sensitive datad.Views do not contain real data

Why might you use a view in SQL?To hide complexity.To ensure data integrity.To improve query performance.All of the above.

Which of the following characteristics does a MySQL view have?1) Easy to use2) Fast data query3) Safe4) Data independenceQuestion 5Select one:a.1,2,3b.1,3c.2,3,4d.1,3,4

Question : SQL Views are also known as

Which of the following SQL statements will create a view named EMP_VIEW with an employee’s First name, last name, and ID, based on the EMPLOYEES tables?1 pointCREATE VIEW EMP_VIEW (EMP_ID, FIRSTNAME, LASTNAME)AS SELECT EMP_ID, F_NAME, L_NAMEFROM EMPLOYEES; CREATE VIEW EMP_VIEW (EMP_ID, FIRSTNAME, LASTNAME)FROM EMPLOYEES; CREATE VIEW EMP_VIEW (EMP_ID, FIRSTNAME, LASTNAME)AS SELECT EMP_ID, F_NAME, L_NAME;NEW VIEW EMP_VIEW (EMP_ID, FIRSTNAME, LASTNAME)AS SELECT EMP_ID, F_NAME, L_NAMEFROM EMPLOYEES;

1/2

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.