如何在ubuntu 16.04中的postgresql中创建数据库?

时间:2016-12-28 05:11:06

标签: postgresql ubuntu-16.04

如何使用postgresql在ubuntu 16.04中创建数据库?
在创建数据库时,它将保存在哪个地方?
以及如何使用postgresql在ubuntu 16.04中创建表?
有任何软件可用于postgresql吗?

1 个答案:

答案 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