I have one view which is derived from the table "A" and table"B". can i delete a row from this view? and after deleting what will be the data of table A and B?
RE: I have one view which is derived from the table "...
Ya It is true that that the DML concepts cannot be used in the complex views such as views containing JOINS. These can be applied to the views which are created on one table with a simple SELECT query.Any changes to this view changes the master table like(ADD DELETE UPDATE)
RE: I have one view which is derived from the table "...
the simple reason to this is DML operations can be done on a single table AND AS YOUR VIEW IS DERIVED FROM MORE THAN ONE TABLE SO IT IS NOT POSSIBLE TO DELETE.