1
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 5 years have passed since last update.

Djangoのdbshellを使う

Last updated at Posted at 2014-02-09

起動

python manage.py dbshell

テーブル一覧確認

.table

ヘルプ

.help

テーブル構造確認

.schema テーブル名

終了

.exit

※補足(普通のSQL覚え書き)
テーブル一覧取得

SELECT * FROM table001

テーブルにフィールド追加

ALTER TABLE table001 ADD title char(100);

テーブル作成

CREATE TABLE table001
(First_Name char(50),
Last_Name char(50),
Address char(50),
Gender int,
Birth_Date datetime);
1
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
1
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?