Which database object should you use to store the data?

You develop a database to store data about textbooks. The data must be stored to process at a later
time.
Which database object should you use to store the data?

You develop a database to store data about textbooks. The data must be stored to process at a later
time.
Which database object should you use to store the data?

A.
View

B.
Table

C.
Function

D.
Stored procedure



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Olivia

Olivia

Should it be B. Table?

Juan

Juan

I agree with Olivia, a stored procedure can generate an array, but to store is in physical structure like TABLE.

shirti

shirti

why cant it be a view?

Andrew

Andrew

A view doesn’t store data. It’s a virtual table that displays data stored in a table. So when you query a view it retrieves data from a physical table.