diff --git a/sql-statements/sql-statement-admin-cancel-ddl.md b/sql-statements/sql-statement-admin-cancel-ddl.md index fe95d83092080..968b059a8785a 100644 --- a/sql-statements/sql-statement-admin-cancel-ddl.md +++ b/sql-statements/sql-statement-admin-cancel-ddl.md @@ -34,7 +34,7 @@ If the operation fails to cancel the jobs, specific reasons are displayed. > **Note:** > -> - Only this operation can cancel DDL jobs. All other operations and environment changes (such as machine restart and cluster restart) cannot cancel these jobs. +> - Before v6.2.0, only this operation can cancel DDL jobs, and all other operations and environment changes (such as machine restart and cluster restart) cannot cancel these jobs. Starting from v6.2.0, [`KILL`](/sql-statements/sql-statement-kill.md) statements can also be used to cancel ongoing DDL jobs by killing them. > - This operation can cancel multiple DDL jobs at the same time. You can get the ID of DDL jobs using the [`ADMIN SHOW DDL JOBS`](/sql-statements/sql-statement-admin-show-ddl.md) statement. > - If the jobs you want to cancel are finished, the cancellation operation fails. diff --git a/sql-statements/sql-statement-kill.md b/sql-statements/sql-statement-kill.md index 1fcf418f5d198..583d9645ec39e 100644 --- a/sql-statements/sql-statement-kill.md +++ b/sql-statements/sql-statement-kill.md @@ -5,7 +5,7 @@ summary: An overview of the usage of KILL for the TiDB database. # KILL -The `KILL` statement is used to terminate a connection in any TiDB instance in the current TiDB cluster. +The `KILL` statement is used to terminate a connection in any TiDB instance in the current TiDB cluster. Starting from TiDB v6.2.0, you can also use the `KILL` statement to terminate ongoing DDL jobs. ## Synopsis