CREATE VIEW [IF NOT EXISTS] view_name
[{columnName [, columnName ]* }] [COMMENT view_comment]
AS query_expression
Create a view with multiple layers nested in it to simplify the development process.
IF NOT EXISTS
If the view already exists, nothing happens.
Create a view named viewName.
create view viewName as select * from dataSource