0
0

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.

SQLの練習

Posted at

#カラムの追加
alter table テーブル名 add column 名前 型

レコードの追加

insert into テーブル名() values ();

要素の変更

update テーブル名 set 要素="" where id = "変更する箇所";
*whereがないと全変更になっちゃって面倒なことになる。
#雑感
sqlの学習は楽しい。
データを比べていると、何かしらの気付きがある。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?