Collections:
Updating Data in a View in SQL Server
Can You Update Data in a View in SQL Server?
✍: FYIcenter.com
Can you update data in a view? The answer is no.
But if the question is "Can you update data in the underlying table through view?" The answer is then yes. SQL Server will allow you to update data in the underlying table through a view. The tutorial exercise below is a good example:
UPDATE fyi_links_top SET url = REVERSE(url) WHERE id = 100001; GO SELECT * FROM fyi_links_top; GO id counts url ------ ------- ------------------------------------------- 100001 1000001 moc.retneciyf.abd 36470 999966 dgqnvmy pyjqd toqcoupuxortasdtzvcae jonfb 12292 999953 qebmw v qqmywe q kza wskxqns jnb SELECT TOP 1 * FROM fyi_links ORDER BY counts DESC; GO id url notes counts created ------ ----------------- ----- ----------- ---------- 100001 moc.retneciyf.abd NULL 1000001 2007-05-19
⇒ Deleting Data from a View in SQL Server
⇐ Inserting Data into a View in SQL Server
2016-11-04, 1570🔥, 0💬
Popular Posts:
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...