For creating new database, in pgAdmin4 how can write the SQL code to check there is another Database that the name is same to our database or not?
CREATE DATABASE sportner
with
OWNER =  POSTGRES           
ENCODING = 'UTF8'       
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
 
    