如何使用postgresql在ubuntu 16.04中创建数据库?
在创建数据库时,它将保存在哪个地方?
以及如何使用postgresql在ubuntu 16.04中创建表?
有任何软件可用于postgresql吗?
答案 0 :(得分:0)
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