CREATE DERIVED VIEW Syntax
The CREATE DERIVED VIEW statement specifies the view name and the contents of the SQL query, as shown in the following example:SELECT * FROM Customers LIMIT 20;
To create new derived views, use CREATE DERIVED VIEW statements.
SELECT * FROM Customers LIMIT 20;