|
GNU/Linux Desktop Survival Guide
by Graham Williams |
|
|||
PostgreSQL Table Schema |
$ psql -d sample_data
psql (12.4 (Ubuntu 12.4-0ubuntu0.20.04.1))
Type "help" for help.
sample_data=# SELECT column_name, data_type
sample_data-# FROM information_schema.columns
sample_data-# WHERE table_name = 'population_postcode';
column_name | data_type
---------------------+-----------
postcode | integer
population | integer
(2 rows)
sample_data=#
|