您的位置:首页 > 数据库

How to create a user in PostgreSQL

2008-01-05 22:56 465 查看
I had try to use the Windows Version of PostgreSQL. But I found that version of postgresql was not as friendly to users as the Windows Version of MySQL. In my point, maybe the reason why is that PostgreSQL use something that does work under Linux, but not under Windows. For example, when i use an account which is same as the account i login windows for starting/stoping the PostgreSQL service in the installition, there world be a permission error. And the installision then failed. All would rollbacked. I had to use the default configure to install PostgreSQL in Windows to avoid some unnessesary problem. Anyway, I just wanna learn and use PostgreSQL. It's fine if it can work.

hehe, let's see how to create a user in PostgreSQL. It's easy.
we login the psql, and use this command:
create user andrewleung with createdb password '123456';

now, we have create a user which name 'andrewleung' with the password 123456 and the permission of create database. if we wanna cancel the permission of create database, we can use this command:
alter user andrewleung no createdb;

The complete syntax for the CREATE USER command is
CREATE USER user-name
[[WITH] option ]...

option :=  SYSID user-id-number
| [NO]CREATEDB
| [NO]CREATEUSER
| IN GROUP groupname [, ...]
| [[UN]ENCRYPTED ] PASSWORD 'password'
| VALID UNTIL 'expiration'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: