Answer Posted / sanjeev kumar
CREATE VIEW Authorsview
AS
SELECT au_id, au_fname, au_lname, phone, state, contract
FROM authors
WHERE state = 'ca'
This is an updatable view and a user can change any column value
like:
UPDATE Authorsview SET state='NY'
Example: but when we create With Check Option then Same as
above but the state column cannot be changed.
CREATE VIEW Authorsview
AS
SELECT au_id, au_fname, au_lname, phone, state, contract
FROM authors
WHERE state = 'ca'
With Check Option
The view is still updatable, except for the state column:
UPDATE Authorsview SET state='NY'
This will cause an error and the state will not be changed
because we have use check option with state.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the indexes in sql server?
What is transaction server auto commit?
What is the purpose of grouping data in a report?
Why use view instead of a table?
What are the new features of sql server 2008 r2 reporting service?
How to create new tables with "select ... Into" statements in ms sql server?
Can we use max in where clause?
how to avoid cursors? : Sql server database administration
What is 2nf example?
What is database black box testing?
How do I create a stored procedure in dbml?
Do you know what are the steps to process a single select statement?
What is exporting utility?
Do you know what is replace and stuff function in sql server?
How to insert and update data into a table with "insert" and "update" statements?