IMHO "interrupted" should be replaced by "killed" or "completed." The concept of interruption can be confusing, as it can be assumed that this will allow the request to be resumed later.
The SQL standard does not provide a way to interrupt or terminate a running query, but each DBMS that I know implements a KILL command or similar. For example, in MySQL, a user can use SHOW [FULL] PROCESSLIST to view all executed queries (and their states, query identifiers, etc.). Users with the KILL privilege can complete the request.
Most KILLs occur because the request has been running too long or is blocking other requests, for example. the table is missing an index or the disk is full. When you do not care about the result (for example, the user canceled the navigation on the site), often the web server itself will interrupt the process and, therefore, the request itself (no interaction with the manual or software is required)
Konerak
source share