SQLAnfragen
SQLAnfragen are structured queries executed against relational databases using SQL. The term combines SQL with the German pluralization Anfragen and is used to refer to the set of commands that operate on data and schemas. They can retrieve data, modify records, and define or alter database structures.
The core language comprises data retrieval, manipulation, and definition statements. Data retrieval is performed with SELECT,
Data modification includes INSERT, UPDATE, and DELETE statements to add, change, and remove rows. Transactions (BEGIN,
Beyond retrieval and modification, SQLAnfragen encompass data definition (CREATE, ALTER, DROP) and data control (GRANT, REVOKE).