为什么Postgresql说“架构不存在”

前端之家收集整理的这篇文章主要介绍了为什么Postgresql说“架构不存在”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何让这个查询起作用?
SELECT weather.id,cities.name,weather.date,weather.degree
FROM weather JOIN weather.city_id ON cities.id
WHERE weather.date = '2011-04-30';

错误:架构“天气”不存在.

天气不是架构,它是一张桌子!

也许:
SELECT weather.id,weather.degree 
FROM weather JOIN cities ON (weather.city_id = cities.id)
WHERE weather.date = '2011-04-30';

postgres抱怨关于weather.city_id的加入,这被解释为模式’weather’中名为’city_id’的表/视图

原文链接:https://www.f2er.com/postgresql/238873.html

猜你在找的Postgre SQL相关文章