Dies ist eine alte Version des Dokuments!
LU02.L02 - Answers: CRUD and SQL
1. Explain what is behind the so-called CRUD operations and add an example.
- CRUD is an acronym for Create, Read, Update, and Delete and represents the four fundamental operations for managing data in a database.
- CRUD is a conceptual framework.
- It outlines the basic operations for data management but doesn't specify how these operations are implemented.
2. What does the acronym SQL stand for?
- Structured Query Language
- Standard Query Language
- Simple Quarrel Language
3. Which of the following statements about CRUD and SQL is NOT correct?
- The CRUD approach is a prerequisite for all types of dynamic web applications.
- CRUD is realised in databases by SQL -statements, e.g. SELECT, CREATE, UPDATE and DELETE
- The CRUD approach groups SQL-operations logically
- CRUD is an alternative to SQL and has to be applied, if we want to build stable web pages.