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;
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
To create new derived views, use CREATE DERIVED VIEW statements.
CREATE DERIVED VIEW [<view_name>] AS <sql_query_contents>
SELECT * FROM Customers LIMIT 20;
CREATE DERIVED VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;
Was this page helpful?