From 7bef956e39e1fc9ebe5f210bb6a083bfb317e372 Mon Sep 17 00:00:00 2001 From: Mars Liu Date: Wed, 1 Jun 2022 15:47:19 +0800 Subject: [PATCH] engine --- .../config.json" | 3 +- .../engine.json" | 7 ++++ .../engine.md" | 42 +++++++++++++++++++ data/tree.json | 2 +- 4 files changed, 52 insertions(+), 2 deletions(-) create mode 100644 "data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.json" create mode 100644 "data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.md" diff --git "a/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/config.json" "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/config.json" index 0ad9f53..d04a844 100644 --- "a/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/config.json" +++ "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/config.json" @@ -4,7 +4,8 @@ "children": [], "export": [ "server.json", - "client.json" + "client.json", + "engine.json" ], "keywords_must": [ [ diff --git "a/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.json" "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.json" new file mode 100644 index 0000000..9213df7 --- /dev/null +++ "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.json" @@ -0,0 +1,7 @@ +{ + "type": "code_options", + "author": "ccat", + "source": "engine.md", + "notebook_enable": false, + "exercise_id": "cce5a0caa6aa4011bf31bc35f7ad73f4" +} \ No newline at end of file diff --git "a/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.md" "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.md" new file mode 100644 index 0000000..ccdadab --- /dev/null +++ "b/data/1.MySQL\345\210\235\351\230\266/1.\345\205\263\347\263\273\345\236\213\346\225\260\346\215\256\345\272\223/2.MySQL \345\237\272\346\234\254\346\246\202\345\277\265/engine.md" @@ -0,0 +1,42 @@ +# 存储引擎 + +关于 MySQL 的存储引擎,下列说法错误的是: + +1. InnoDB 支持事务,有更好的并发能力。 +2. MyISAM 不支持事务和外键,结构简单,可以压缩为只读状态。 +3. Memory 引擎将数据保存在内存中,重启会丢失数据,读速度快很快,适合作为会话表和缓存表。 +4. 临时表默认使用 Memory 引擎。 + +## 答案 + +4 + +## 选项 + +### A + +``` +1, 2, 3 +``` + +### B + +``` +2, 3, 4 +``` + +### C + +``` +2, 3 +``` + +### D + +``` +1, 4 +``` + +### E + +全部都对 \ No newline at end of file diff --git a/data/tree.json b/data/tree.json index ea21e5d..b8cb101 100644 --- a/data/tree.json +++ b/data/tree.json @@ -45,7 +45,7 @@ ] ], "keywords_forbid": [], - "group": 0 + "group": 1 } } ], -- GitLab