Postgresql
PostgreSQL Select 語句在 datagrip 中產生錯誤,但在 pgAdmin4 中沒有
我可以在 pgadmin4 中執行以下腳本而不會出錯
SELECT * from tbl
我在datagrip中嘗試了以下
SELECT * from tbl
和
SELECT * from public.tbl
上述腳本均無效。返回以下錯誤:
[2018-05-12 21:16:44] [42P01] ERROR: relation "public.tbl" does not exist [2018-05-12 21:16:44] Position: 15
這最終變得非常簡單且非常愚蠢,但希望這對其他人有所幫助。
我只需要選擇正確的數據庫。預設值為
postgres
. 我有我的表的數據庫是webadmin
. 當您在 datagrip 中建立連接時,您可以更改數據庫。我進行更改的螢幕看起來像這樣
@亞歷克斯,
參考文件