ColumnStore CREATE VIEW
Syntax
CREATE
[OR REPLACE]
VIEW view_name [(column_list)]
AS select_statementNotes
CREATE VIEW v_cust_orders (cust_name, order_number, order_status) AS
SELECT c.cust_name, o.ordernum, o.status FROM customer c, orders o
WHERE c.custnum = o.custnum;Last updated
Was this helpful?

