LoginSignup
0
0

Postgresでのテーブルの作り方

Last updated at Posted at 2022-05-19

Postgres テーブルの作り方

ターミナル開く
psql postgres
create database nodedb;
\c nodedb
下の文が表示される
You are now connected to database "nodedb" as user "*****".

次に以下のコマンドを実行
CREATE TABLE member (id int PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, name varchar(20));

下の文が表示される

CREATE TABLE


React.js 参考記事(初心者)Training

Reactアプリの起動方法 react-native run-ios or react-native run-android

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0