0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

SQLite3 テーブルにカラム(縦列)を追加する方法

Posted at

#はじめに
この記事は数弱体質の体育大学生である私が、知りたかったことや躓いたところを書き留めておく備忘録です:santa_tone5:
間違いがあれば訂正をよろしくお願いします。

環境とか:windows10 VScode python

#データベースに接続する
まず初めに、SQLite3をダウンロードする。
その後、sqlite3.exeを保存したディレクトリ(保存先)に移動するためにコマンドライン(黒い画面)にcd 'path'と入力して移動する。pathが分からないときはsqlite3.exeを右クリックしてプロパティを確認すると(場所:)に書かれている。
(例)

\Users\111\Downloads\sqlite3>

次に、データベースに接続する。
コマンドラインに下記のコードを打ち込む。
下記の db にはデータベースの名前を入力。
入力した名前のデータベースが存在しないときは、入力した名前のデータベースが新しく作成される。

./sqlite3 db.sqlite3

#テーブルにカラムを追加する
〇〇〇にはカラムを追加したいテーブルの名前を入れる。

△△△には追加したいカラムの名前を入れる。

☆☆☆にはデータ型を入力。
種類
・INTEGER
・REAL
・TEXT
・BLOB
・NUMERIC

#追加されたかどうか確認する

〇〇〇は確認するテーブルの名前を入れる。

.schema 〇〇〇

#備考
不足している情報は私の学習進度に応じて追加していきます。:hotdog:

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?