I think of CRUD in terms of what a simple restful API calls would be.
C – Create, you will see these as POST request.
R – Read, you will see these as GET request. You are asking the server to get you something.
U – Update, these are when you need to change something but not delete it. You will see these as PUT request.
D – Delete, well it deletes something.