psqlでのデータベースとテーブルの作成
Posted: 2017年6月19日(月) 15:42
1.データベースの作成
CREATE test utf8;
2.テーブルの作成
>データベースへの移動
postgres=# \connect test
(connectの前の円マークを忘れない事)
>テーブルの作成
create table tbl2 (id text,name,text);
CREATE test utf8;
2.テーブルの作成
>データベースへの移動
postgres=# \connect test
(connectの前の円マークを忘れない事)
>テーブルの作成
create table tbl2 (id text,name,text);