From c9d9e435f8c95406e9e45a9c59861a7bf4a463dc Mon Sep 17 00:00:00 2001 From: Mars Liu Date: Tue, 2 Nov 2021 17:01:43 +0800 Subject: [PATCH] hello --- .../config.json" | 3 +- .../hello.json" | 5 +++ .../hello.md" | 36 +++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 "data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.json" create mode 100644 "data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.md" diff --git "a/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/config.json" "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/config.json" index d316964..59c91c2 100644 --- "a/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/config.json" +++ "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/config.json" @@ -1,5 +1,6 @@ { "keywords": [], "node_id": "c-a7151df5705f4579bf5f63413385242e", - "title": "查询数据" + "title": "查询数据", + "export": ["hello.json"] } \ No newline at end of file diff --git "a/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.json" "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.json" new file mode 100644 index 0000000..42b7643 --- /dev/null +++ "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.json" @@ -0,0 +1,5 @@ +{ + "type": "code_options", + "author": "刘鑫", + "source": "hello.md" +} \ No newline at end of file diff --git "a/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.md" "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.md" new file mode 100644 index 0000000..d814dd4 --- /dev/null +++ "b/data/1.OceanBase\345\210\235\351\230\266/2.\345\237\272\346\234\254\346\223\215\344\275\234/7.\346\237\245\350\257\242\346\225\260\346\215\256/hello.md" @@ -0,0 +1,36 @@ +# Hello + +下面哪个选项可以显示 “Hello”? + +## 答案 + +```sql +select 'Hello'; +``` + +## 选项 + +### 关键字错误 + +```sql +print 'Hello'; +``` + +### 字符串类型错误 + +```sql +select "Hello"; +``` + +### 关键字错误 + +```sql +echo 'Hello'; +``` + +### 关键字错误 + +```sql +log 'Hello'; +``` + -- GitLab