Daniel B. Thurman wrote:
> I am finding out for the first time that by having a database created
> with the name: MyTest, I cannot do a simple query as follows:
>
> postgres=# select * from MyTest.public.cars;
> ERROR: cross-database references are not implemented:
> "mytest.public.cars"
Try:
select * from "MyTest".public.cars;
Yours,
Laurenz Albe