Viewing views
Because views are very useful, it's common to end up with many of them in your database. It's important to keep track of them so that database users know what is available to them.
The goal of this exercise is to get familiar with viewing views within a database and interpreting their purpose. This is a skill needed when writing database documentation or organizing views.
Questo esercizio fa parte del corso
Database Design
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
-- Get all non-systems views
SELECT * FROM ___.___
WHERE table_schema ___ ___ ('pg_catalog', 'information_schema');