PostgreSQL不创建具有“createdb”作为超级用户的数据库,但不输出错误

前端之家收集整理的这篇文章主要介绍了PostgreSQL不创建具有“createdb”作为超级用户的数据库,但不输出错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用一个新的postgresql安装,与’postgres’超级用户登录
sudo -u postgres psql


postgres=# createdb database
postgres-# \list
                                  List of databases
   Name    |  Owner   | Encoding |  Collation  |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | 
 template0 | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres
                                                             : postgres=CTc/postgres
 template1 | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres
                                                             : postgres=CTc/postgres

没有错误,但是没有创建表。有任何想法吗?

createdb是一个命令行实用程序,您可以从bash运行而不是从psql运行。
要从psql创建数据库,请使用create database语句,如下所示:
create database [databasename];

注意:一定要始终结束你的sql语句;

原文链接:https://www.f2er.com/postgresql/193288.html

猜你在找的Postgre SQL相关文章