What is “CURD”?Knowledge in 3 minutes

General

You may occasionally hear about this CURD in the field of system development and testing,

The main function of the system

  • Create
  • Read
  • Update
  • Delete.

The acronym stands for “Create,” “Read,” “Update,” and “Delete,” the main functions of the system.

For example, what is CRUD in a Blog system?

For example, consider each CRUD function in a blog system

[Create]

  • Posting an article
  • Function to register comments

etc.

[Read]

  • Function to display the list of articles on the blog top page
  • Function to display the list of articles on the blog administration page

etc.

[Update]

  • Edit and save registered posts on the blog administration page.
  • Edit and save comments you have posted.

etc.

[Delete]

  • Delete registered posts on the blog administration page.
  • Delete comments you have posted.

etc.

If you are a beginner who wants to learn programming,
Web applications and other development, you should first learn to be aware of CRUD!