Data dictionary — metadata about database objects.
Contents:
Example:
1-- View table structure2DESCRIBE customers;34-- MySQL5SHOW COLUMNS FROM customers;67-- PostgreSQL8SELECT column_name, data_type9FROM information_schema.columns10WHERE table_name = 'customers';
Benefits:
BA use: