PhelipeLB / Crud-beer

App project to help taking order for a local beer store.
11 stars 1 forks source link

what is crud? [concept] #33

Open daniloab opened 1 year ago

daniloab commented 1 year ago

write down a tiny introduction about what is CRUD concept

Eudusantos commented 1 year ago

create, read, update and dele, just like a database operation

guilhermedinardi commented 1 year ago

Basically, CRUD is a composition of 4 first letters of a basic system that run a database

C = Create a new data R = Read the data U = Update the data
D = Delete the data

ghost commented 1 year ago

In the digital age, it is increasingly common to register our data in systems, which will be stored and processed for future queries, value generation, and knowledge acquisition, aiming to provide an enhanced user experience for customers or users of a particular service. To achieve this goal, it is essential for a system to perform four fundamental operations: create, read, update, and delete.