Collections:
ALTER VIEW - Modifying Existing Views in SQL Server
How To Modify the Underlying Query of an Existing View in SQL Server?
✍: FYIcenter.com
If you have an existing view, and want to change the underlying SELECT statement, you can use the "ALTER VIEW ..." statement to redefine the view. The tutorial exercise below shows you how modify an existing view:
USE FyiCenterData; GO ALTER VIEW fyi_links_top AS SELECT TOP 3 id, counts, url FROM fyi_links WHERE counts > 100 ORDER BY counts DESC; GO SELECT * FROM fyi_links_top; GO id counts url ------ ------- ------------------------------------------- 36470 999966 dgqnvmy pyjqd toqcoupuxortasdtzvcae jonfb 12292 999953 qebmw v qqmywe q kza wskxqns jnb 6192 999943 p o qisvrakk hk od
⇒ Inserting Data into a View in SQL Server
⇐ Using ORDER BY to Define a View in SQL Server
2016-11-04, 2313🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...