Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用语法更改我的 pg/sql pwd
alter user username WITH PASSWORD '*****';
问题是我的用户名包含句点,例如user.name,并且系统似乎不允许用户名中包含句点。
user.name
那么如何更改我的密码呢?
您必须双引号否则非法标识符。更多在手册中。
ALTER USER "a.b" WITH PASSWORD '*****';
更好的是:从不使用非法字符串开始。