Let's say I have a permissions to update a view, where the view is:
create view v as select * from Student where major like '%Engineering%'
.
I don't have permissions to modify or view any student whose major does not contain the word "Engineering." Should I be allowed to insert into this view even if the major of the student I'm inserting is 'Biology'
? Would the view propagate to the base relation?