CREATE VIEW actor_name_view
AS
SELECT first_name first_name_v,last_name last_name_v
FROM actor

创建视图:CREATE VIEW 视图名 AS 查询语句