Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
Signed-off-by: jayzhan211 <[email protected]>
  • Loading branch information
jayzhan211 committed Nov 14, 2023
1 parent 12f684c commit b990b47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2286,13 +2286,13 @@ array_except(array1, array2)
```
❯ select array_except([1, 2, 3, 4], [5, 6, 3, 4]);
+----------------------------------------------------+
| array_union([1, 2, 3, 4], [5, 6, 3, 4]); |
| array_except([1, 2, 3, 4], [5, 6, 3, 4]); |
+----------------------------------------------------+
| [1, 2] |
+----------------------------------------------------+
❯ select array_union([1, 2, 3, 4], [3, 4, 5, 6]);
❯ select array_except([1, 2, 3, 4], [3, 4, 5, 6]);
+----------------------------------------------------+
| array_union([1, 2, 3, 4], [3, 4, 5, 6]); |
| array_except([1, 2, 3, 4], [3, 4, 5, 6]); |
+----------------------------------------------------+
| [3, 4] |
+----------------------------------------------------+
Expand Down

0 comments on commit b990b47

Please sign in to comment.