Computer Science, asked by vaishnavpatil1143, 4 months ago

modify location of dept_no 10 of dept view

Answers

Answered by vedantkathole
1

Explanation:

A view is a virtual table whose definition is stored in the database. But, unlike tables, views do not actually contain any data. Instead, it provides a way to store commonly used complex queries in the database. However, you can use the view in a SQL SELECT statement to access the data just as you would use a normal or base table

please give me brainliest

Answered by simrangorad40
1

Answer:

UPDATE VIEW dept_view

WHERE dept_no = 10

Similar questions