How to create database in PostgreSQL

1 Answer

0 votes
CREATE DATABASE YourDatabaseName
    WITH 
    OWNER = postgres
    ENCODING = 'UTF8'
    CONNECTION LIMIT = -1;

 



answered Apr 23, 2020 by avibootz
...