天天看點

CRUD是什麼?

中文簡介

  CRUD是指在做計算處理時的增加(Create)、查詢(Retrieve)(重新得到資料)、更新(Update)和删除(Delete)幾個單詞的首字母簡寫。主要被用在描述軟體系統中資料庫或者持久層的基本操作功能。

英文釋義

  In computing, CRUD is an acronym for create, retrieve, update, and delete. It is used to refer to the basic functions of a database or persistence layer in a software system.

  C reate new records

  R etrieve existing records

  U pdate existing records

  D elete existing records.