1
0
Files
sql-study/PostgreSQL/common.sql
2025-11-04 21:35:50 +08:00

5 lines
125 B
SQL

-- 修改用户的密码
alter user postgres with password '123456';
-- 查询所有用户
select * from pg_catalog.pg_user;