Is there a catch-all term for database operations that don't alter any data at all?
For example, SELECT
statements have no effect on the contents of the database.
On the other hand, INSERT
, UPDATE
, and DELETE
statements have the potential to create, edit, or remove data.
To clarify, I'm not referring to idempotent operations, which can be repeated multiple times without altering data more than once.