Requires Free Membership to View
When you register, my team of editors will also send you resources covering Linux administration and management; integration and interoperability between Linux, Windows and Unix; securing Linux and mixed-platform environments; and migrating to Linux.
Margie Semilof, Editorial DirectorA VIEW is a compiled object. Data is always stored in the databases tables and through view you are looking at the underlying data
SELECT a.col1, b.col2 from TABLE_A a, TABLE_B b WHERE a.col3 = b.col4
is equivalent to:
CREATE VIEW a_view AS SELECT a.col1, b.col2 from TABLE_A a, TABLE_B b WHERE a.col3 = b.col4SELECT * FROM a_view
This was first published in March 2006