LoginSignup
0
0

CRUDについてメモ

Posted at

CRUDとは

CRUDはデータを取り扱うソフトウェアに要求される4つの基本機能である

  • Create(生成)
  • Read(読み取り)
  • Update(更新)
  • Delete(削除)

のイニシャルからできた用語である

Database

CRUDをデータベースで表すと以下のようになる

CRUD 操作 SQL
Create 生成 INSERT
Read 読み取り SELECT
Update 更新 UPDATE
Delete 削除 DELETE

CRUD は、オブジェクトデータベース、XMLデータベース、フラットファイルデータベース、特定のファイル形式などにも実装可能である

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