PostgreSQL/User Previliege/Drop User — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 10:14, 26 мая 2010
Drop a user
-- Create a PostgreSQL user (jor) in the accounting group that is valid until January 1, 2005 and
-- has the specified password of jw1234.
CREATE USER jor
WITH PASSWORD "jw1234" CREATEDB
IN GROUP accounting VALID UNTIL "Jan 1 2005";
drop user jor;