CRUD

You might say

Build me a client quote list: add new ones, edit amount and status, delete rows, and show all records on open.

CRUD is the four basic operations repeatedly performed on one kind of data: create, read, update, and delete.For a client quote list: tapping "new" adds a quote (create), opening the list shows every record (read), changing an amount or status is an update, and removing a record is a delete. These four cover the backbone of managing data; exports and charts are extra features built on top, not one of the four.
Know first
Further reading