How to write a stored procedure to create view in the database?
Stored Procedure needs to be dynamic if any record update any of the above tables it should update the views.
Table Name : Member
Database Name: DataMart
Thanks,
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mageshwaran RPosted Nov 13, 2019, 4:36 AM
Nirav GandhiPosted Jun 1, 2019, 6:33 AM
Please understand database concepts. Table and view both have different concepts.
Table: is used for Inset, update and delete data.
View: is a virtual table(logical) based on the result-set of an SQL statement. so if you insert any data on a table it will automatically reflect on view.
Gajendra JangidPosted May 31, 2019, 2:26 AM
Jignesh KumarPosted May 30, 2019, 11:29 PM