create view in sql

Write sql command to create view consisting of all students in "Medical" stream and who have scored "A" grade.


CREATE View V1 As
Select * from student
where stream = 'Medical' and grade = 'A';