我需要更改表的所有者.
我创建了表格:
CREATE TABLE example (some columns);
Run Code Online (Sandbox Code Playgroud)
然后我试图改变主人:
ALTER TABLE database.expample OWNER TO "secondary";
Run Code Online (Sandbox Code Playgroud)
他们我得到了这个错误:
ERROR: must be member of role "secondary"
Run Code Online (Sandbox Code Playgroud)
有谁能够帮我?
提前致谢.
postgresql ×1