MCQs>IT & Programming>DB2 Programming>Consider the following SQL statement, executed by user S001: CREATE VIEW BOSTON_TEAMS AS SELECT * FROM TEAMS WHERE STATE = 'MA' User S002 has INSERT authority on this view, what would happen if he tries to insert a row into this view, where the STATE field of that line contains a value of ‘IN’?
DB2 Programming MCQs
Consider the following SQL statement, executed by user S001: CREATE VIEW BOSTON_TEAMS AS SELECT * FROM TEAMS WHERE STATE = 'MA' User S002 has INSERT authority on this view, what would happen if he tries to insert a row into this view, where the STATE field of that line contains a value of ‘IN’?
Answer
Correct Answer: The row will be inserted in the table S001.TEAMS, but it will never show up in a SELECT on this view.
Explanation:
Note: This Question is unanswered, help us to find answer for this one