Help Center/ MapReduce Service/ Component Operation Guide (LTS)/ Using HetuEngine/ Common HetuEngine SQL Syntax/ HetuEngine DDL SQL Syntax/ SHOW CREATE VIEW
Updated on 2025-03-17 GMT+08:00
SHOW CREATE VIEW
Syntax
SHOW CREATE VIEW view_name
Description
This statement is used to display the SQL creation statement of a specified data view.
Example
To display the SQL statement that can be used to create the order_view view:
SHOW CREATE VIEW test_view;
Create View
---------------------------------------
CREATE VIEW hive.default.test_view AS
SELECT
orderkey
, orderstatus
, (totalprice / 4) quarter
FROM
orders
(1 row) Parent topic: HetuEngine DDL SQL Syntax
What is your overall rating for this page?
0
1
2
3
4
5
6
7
8
9
10
Very dissatisfiedVery satisfied
Thank you very much for your feedback. We will continue working to improve the documentation.
The system is busy. Please try again later.