如何从 Postgresql/Phppgadmin 导出视图数据

发布于 2024-10-04 21:32:51 字数 78 浏览 4 评论 0原文

我知道如何通过 PhpPgAdmin 导出表。

有没有办法可以从 PhpPgAdmin 导出视图数据。

谢谢。

I know how to export a table via PhpPgAdmin.

Is there a way I can export a view data out of PhpPgAdmin.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

腹黑女流氓 2024-10-11 21:32:51

也可以选择通过 phpPGadmin 来完成此操作。

  1. 制作视图
  2. 视图
  3. 选择为视图选择的列下方的
  4. ,在此选择屏幕中有一个“选择”选项,选择“选择所有字段”选项,
  5. 运行选择,
  6. 获得每页 30 个结果
  7. 您将在结果底部 选项“下载”
  8. 选择您想要的导出类型(CSV,XHTML,...)
  9. 选择下载

我知道这是一个迟到的答复,但我必须自己搜索这个,这是谷歌的第一个结果,所以我希望这有帮助其他谷歌击球手:)

There is an option to do it through phpPGadmin as well.

  1. Make the view
  2. Select the view
  3. underneath your columns selected for the view there is an option 'select'
  4. in this select screen select the option " Select All Fields"
  5. run the select
  6. you get the results 30 per page
  7. at the bottom of the results there is an option 'download'
  8. select your kind of export you want (CSV, XHTML, ...)
  9. select download

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 :)

请帮我爱他 2024-10-11 21:32:51
SELECT 
    definition 
FROM 
    pg_views 
WHERE 
    schemaname = 'public' 
AND
    viewname = 'your_view';
SELECT 
    definition 
FROM 
    pg_views 
WHERE 
    schemaname = 'public' 
AND
    viewname = 'your_view';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文