如何在 ubuntu 16.04 中的 postgresql 中创建数据库?
How to create database in postgresql in ubuntu 16.04?
如何使用 postgresql 在 ubuntu 16.04 中创建数据库?
atfer 创建数据库,它将保存在哪个位置?
以及如何使用 postgresql 在 ubuntu 16.04 中创建 table?
是否有任何软件可以与 postgresql 一起使用?
first way is:<br>
CREATE DATABASE dbname;
for example:<br>
postgres=# CREATE DATABASE testdb;<br>
postgres-#
Second way is:<br>
createdb command<br>
**for example:**<br>
createdb -h localhost -p 5432 -U postgres testdb
如何使用 postgresql 在 ubuntu 16.04 中创建数据库?
atfer 创建数据库,它将保存在哪个位置?
以及如何使用 postgresql 在 ubuntu 16.04 中创建 table?
是否有任何软件可以与 postgresql 一起使用?
first way is:<br>
CREATE DATABASE dbname;
for example:<br>
postgres=# CREATE DATABASE testdb;<br>
postgres-#
Second way is:<br>
createdb command<br>
**for example:**<br>
createdb -h localhost -p 5432 -U postgres testdb