Skip to content

Commit 787e114

Browse files
committed
Fix AmrDeveloper#77: Fix case expression in docs
1 parent f9d61c9 commit 787e114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/expression/case.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Case expression is similar to Switch Expression in many languages, it's return the value of the first branch that has condition evaluated to true, if not branch found it will return the default value
22

33
```sql
4-
SELECT name FROM branches WHERE (CASE WHERE isRemote THEN 1 ELSE 0 END) > 0
4+
SELECT name FROM branches WHERE (CASE WHEN isRemote THEN 1 ELSE 0 END) > 0
55
```

0 commit comments

Comments
 (0)