A View can be modified by:
ALTER VIEW vwStudentDetails
AS
SELECT * FROM Students
WHERE Std_Grade=1;
SELECT * FROM vwStudentDetails;
The command(s) completed successfully.
Id Name Std_Course Phone Std_Grade
3 Harri Robins 3 78788 1
(1 row(s) affected)
This example alters the view created earlier, and then executes it.