我如何对 PostgreSQL 模式内部的 table 进行 Select 查询?

How do I do Select queries on a table that is inside of a schema in PostgreSQL?

我在 AWS 上设置了一个 RDS 实例。我无法毫无问题地连接到 PostgreSQL 数据库。

当我尝试 运行 select 语句反对 table 时,我得到了奇怪的结果。它只列出登录的用户。 table 是 User。我看到 table 在 public 模式中。我尝试搜索 SELECT * From public.User 但失败了。我在这里错过了什么? table 确实存在,因为我可以通过 PSequel 中的数据看到它我只想使用 select.

查询数据

尝试SELECT * FROM public."User";。 Postgres lower-cases table 名称,如果您不在它们周围加上引号。我只是让我所有的 tables lower-case 来避免麻烦。