Answers for "postgresql create usr"

SQL
0

psql create usr

CREATE USER name [ [ WITH ] option [ ... ] ]

where option can be:
    
      SYSID uid 
    | CREATEDB | NOCREATEDB
    | CREATEUSER | NOCREATEUSER
    | IN GROUP groupname [, ...]
    | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password'
    | VALID UNTIL 'abstime'
Posted by: Guest on October-03-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language