9
14

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.

SQL DDL,DMLでできること[備忘録]

Posted at

SQL

SQL(Structured Query Language)はリレーショナルデータベース(RDB)の操作を行うための言語
・リレーショナルデータベースとは
データをテーブルという表形式の構造で管理するデータベースのこと

SQLはデータベースやテーブルに対して様々な命令を行いますが、
その命令は大きく2つ、
・データを定義するDDL(Data Definition Language)
・データを操作するDML(Data Manipulation Language)

・DDLの出来ること

・create  データベースやテーブルの作成
・ALTER  データベースやテーブルの更新
・DROP データベースやテーブルの削除

・DMLの出来ること

・INSERT  データの登録
・UPDATE  データの更新
・DELETE  データの削除
・SELECT  データの検索

9
14
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
9
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?