如果登录用户的默认schema就是表的schema,那么查询时直接用select fields from table就行;
如果登录用户的默认schema不是表的schema,那么要查询到结果,必须用select fields from schema.table,否则会报表不存在的SQLException。
经实验,下文所说的在url中指定当前schema的方式是无效的。大家还是得用schema.table这种方式查询。
https://blog.huati365.com/f4984f0b92029722
##9.4以前的版
jdbc:postgresql://localhost:5432/mydatabase?searchpath=myschema
##9.3以后的版
jdbc:postgresql://localhost:5432/mydatabase?currentSchema=myschema
END