* psql シェルでコピー&ペーストするなどしてください
* copy & paste in psql shell. Show How to Install
Uso
SELECT show_create_table('table_name', 'schema_name');
or
SELECT show_create_table('table_name', null);
schema_name を null にすると、全スキーマが検索の対象になります。
If schema_name = null, all o... Mostrar Uso