From 789e86220fa1852183fa352ae831f2837f863943 Mon Sep 17 00:00:00 2001 From: zyimm Date: Tue, 24 Oct 2023 11:27:19 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=88=AA=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/Linux/other/cron.md | 2 +- _posts/git/questions.md | 2 +- _posts/数据库/Mysql/batch_drop_table.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/Linux/other/cron.md b/_posts/Linux/other/cron.md index 1bbe302..3588058 100644 --- a/_posts/Linux/other/cron.md +++ b/_posts/Linux/other/cron.md @@ -14,7 +14,7 @@ Cron 表达式由空格分隔的五个字段组成,分别表示分钟、小时 minute hour day month week command 顺序:分 时 日 月 周 ``` -> + >以下是每个字段的取值范围和特殊字符的说明: 分钟字段:取值范围是 0-59。 diff --git a/_posts/git/questions.md b/_posts/git/questions.md index c26691d..0331d7b 100644 --- a/_posts/git/questions.md +++ b/_posts/git/questions.md @@ -14,4 +14,4 @@ tags: Git ```sh git pull -``` \ No newline at end of file +``` diff --git a/_posts/数据库/Mysql/batch_drop_table.md b/_posts/数据库/Mysql/batch_drop_table.md index 13491e8..c81752c 100644 --- a/_posts/数据库/Mysql/batch_drop_table.md +++ b/_posts/数据库/Mysql/batch_drop_table.md @@ -23,7 +23,7 @@ EXECUTE stmt; DEALLOCATE PREPARE stmt; ``` -> + 上述代码中的 `database_name` 替换为要操作的数据库的名称,`regex_pattern` 替换为要匹配的表名的正则表达式模式。