Description
TheALTER VIEW statement updates the query assigned to a view created with the CREATE VIEW command.
ALTER VIEW statement updates the query assigned to a view created with the CREATE VIEW command.
ALTER VIEW view_name [AS] (
SELECT * FROM integration_name.table_name
);
--or
ALTER VIEW name
FROM integration_name (
SELECT * FROM table_name
);
Was this page helpful?