Create database with specific owner in psql

Postgresql -- Posted on July 17, 2017

Create database with specific owner in psql

              
                CREATE DATABASE databasename WITH OWNER username  ENCODING='utf-8';
                  
   
            

Related Posts