是否可以定义在哪个模式中默认创建新表? (由“不合格表名”引用。)
我看到一些关于在Postgres中使用“搜索路径”的细节,但我认为它只有在检索数据,而不是创建。
我有一堆sql脚本,创建许多表。不是修改脚本,我想在默认情况下在特定模式中设置数据库创建表 – 当它们有不合格的名称时。
这可能吗?
搜索路径的确是你想要的:
% create schema blarg;
% set search_path to blarg;
% create table foo (id int);
% \d
List of relations
Schema | Name | Type | Owner
--------+------+-------+-------
blarg | foo | table | pgsql
原文链接:https://www.f2er.com/postgresql/193353.html