溫馨提示×

怎么在postgresql中查看數(shù)據(jù)庫用戶

養(yǎng)魚的貓咪
2069
2021-05-07 19:33:42
欄目: 云計算

在postgresql中查看數(shù)據(jù)庫用戶的方法:1.啟動postgresql服務;2.登錄postgresql數(shù)據(jù)庫;3.使用數(shù)據(jù)庫;4.執(zhí)行命令查看;

怎么在postgresql中查看數(shù)據(jù)庫用戶

具體步驟如下:

1.首先,在命令行中啟動postgresql服務;

net start postgresql

2.postgresql服務啟動后,在命令行中登錄到postgresql數(shù)據(jù)庫;

psql -h -U

3.登錄到postgresql數(shù)據(jù)庫后,在postgresql選擇一個數(shù)據(jù)庫并使用;

\c text

4.最后,進入到數(shù)據(jù)庫后,在數(shù)據(jù)庫中執(zhí)行以下命令即可查看所有的數(shù)據(jù)庫用戶;

select current_user;

1