Answers for "postgresql createdb command"

3

create database postgres

createdb -h localhost -p 5432 -U postgres testdb
password ******
Posted by: Guest on December-15-2020
0

createdb psql

createdb [option...] [dbname [description]]
Posted by: Guest on October-04-2021
-1

postgresql createdb

$ createdb -p 5000 -h eden -E LATIN1 -e demo
CREATE DATABASE demo ENCODING 'LATIN1';
/*createdb [connection-option...] [option...] [dbname] [description]*/
Posted by: Guest on August-26-2020

Browse Popular Code Answers by Language