Views
Views
Creating
CREATE VIEW view_name AS (
-- In here, any kind of SELECT query
SELECT * FROM somewhere
);Updating
CREATE OR REPLACE VIEW view_name AS (
-- In here, any kind of SELECT query
SELECT * FROM somewhere
);Deleting
Materialized Views
Creating
Refreshing data
concurrently
Deleting
Last updated