To create a view is rather simple.
- CREATE OR REPLACE VIEW Audit.vw_Your_Table AS
- SELECT *
- FROM Your_table;
Comment on View:
- COMMENT ON VIEW Audit.vw_Your_Table IS 'Display the data';
A place for tutorials on programming and other such works.
To create a view is rather simple.
- CREATE OR REPLACE VIEW Audit.vw_Your_Table AS
- SELECT *
- FROM Your_table;
Comment on View:
- COMMENT ON VIEW Audit.vw_Your_Table IS 'Display the data';