create view viewname as
select sno,sname,ssex from student where .....
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
create VIEW my_student
SELECT sno as 学生学号,sname as 姓名,ssex as 性别 FROM student
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
将以上代码复制到SQL查询分析器运行,OK