Computer Science, asked by Abhishekmanhar, 1 month ago

How can we insert data into a view?
हम एक व्यू में डेटा कैसे डाल सकते हैं?

Select one:
A. insert into values ();
B. create data values ();
C. insert into ();
D. enter ();​

Answers

Answered by ashokdew73
2

Answer:

File के अंदर जाकर New पर क्लीक करें और Blank Desktop Database में जाएँ।

अब आपके सामने एक File Name नामक बॉक्स दिखेगा जिसमे अपने नये डेटाबेस जिसे आप बनाने जा रहे हैं, उसका नाम लिखें।

Answered by anurimasingh22
0

Answer:

Option A. Insert into values(); is correct.

Explanation:

What is a database view?

A database view is a subset of database. It is based on database queries that runs on the database tables. A view is just like a table, with rows and columns. The fields and records in a view are the fields and records of one or more tables in a database.

A view can be created using CREATE VIEW statement.

Data can be inserted into a view using the insert into values() statement as:

INSERT INTO view_name VALUES(value1, value2, ...);

Learn more about Databases and Views:

https://brainly.in/question/18439270

https://brainly.in/question/11260718

https://brainly.in/question/16680422

Similar questions