CRUD
CRUD is an acronym standing for Create, Read, Update, and Delete, representing the four basic operations for persistent storage in database management and software applications. The term is widely used in data management, software design, and API development to describe the fundamental manipulations of stored data. The concept originated in the 1970s as database systems and early software patterns emphasized basic data access operations; while the exact origin of the term is uncertain, it has become a standard shorthand in the field.
Mapping to SQL and other stores: In relational databases, Create maps to INSERT, Read to SELECT, Update
Limitations and variations: CRUD describes basic data manipulation but does not by itself model business behavior