I know how to export a table via PhpPgAdmin.
Is there a way I can export a view data out of PhpPgAdmin.
Thanks.
I know how to export a table via PhpPgAdmin.
Is there a way I can export a view data out of PhpPgAdmin.
Thanks.
There is an option to do it through phpPGadmin as well.
I know its a late reply but i had to search myself this one and this was the first result from google so I hope this helps other google hitters :)
SELECT
definition
FROM
pg_views
WHERE
schemaname = 'public'
AND
viewname = 'your_view';