Modify load docs (#1558)

Make it work with documentation website
This commit is contained in:
Mingyu Chen
2019-07-29 15:48:59 +08:00
committed by ZHAO Chun
parent 011bdcd641
commit 99836f0d7c
8 changed files with 694 additions and 585 deletions

View File

@ -11,19 +11,19 @@
## Examples
```
mysql> select split_part("hello word", " ", 1);
mysql> select split_part("hello world", " ", 1);
+----------------------------------+
| split_part('hello word', ' ', 1) |
| split_part('hello world', ' ', 1) |
+----------------------------------+
| hello |
+----------------------------------+
mysql> select split_part("hello word", " ", 2);
mysql> select split_part("hello world", " ", 2);
+----------------------------------+
| split_part('hello word', ' ', 2) |
| split_part('hello world', ' ', 2) |
+----------------------------------+
| word |
| world |
+----------------------------------+
mysql> select split_part("2019年7月8号", "月", 1);