2016-09-18 0:05 GMT+02:00 Thomas <tszhu2003@xxxxxxxx>:
I'm new to postgresSQL and try to create database. I connected as postgres
user/role, I ran create database test1 without any error message, but don't
see test1 database being created. Can someone help to shed some light on
why? Thanks.
Did you put a ";" at the end of your SQL statement?
such as:
CREATE DATABASE foo ;
--