📜  错误:没有选择要创建的架构 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:15.083000             🧑  作者: Mango

代码示例1
You get this error when your search_path setting has no valid first entry (typically empty). Postgres does not know in which schema to create the table.

Fix your search_path setting, or schema-qualify object names (like: public.users). But fix your search_path in any case.
Details:

How does the search_path influence identifier resolution and the "current schema"