You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/en/docs/essentials/data-types.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ In Genji, _NULL_ is treated as both a value and a type. It represents the absenc
31
31
Whenever Genji needs to manipulate data of different types, depending on the situation it will rely on either:
32
32
33
33
-**explicit conversion**: The source type and destination type are clearly identified. Ex: When inserting data to field with a constraint or when doing a `CAST`.
34
-
-**implicit conversion**: Two values of different types need to be compared or used by an operator during the evaluation of an [expression]({{< relref "/docs/genji-sql/expressions.md" >}})
34
+
-**implicit conversion**: Two values of different types need to be compared or used by an operator during the evaluation of an [expression]({{< relref "/docs/essentials/expressions.md" >}})
35
35
36
36
### Explicit conversion
37
37
@@ -61,5 +61,5 @@ Here is a table describing type compatibility.
61
61
62
62
### Implicit conversion
63
63
64
-
There is only one kind of implicit conversion: `INTEGER` to `DOUBLE`. This usually takes place during the evaluation of an [expression]({{< relref "/docs/genji-sql/expressions" >}}) involving INTEGER and DOUBLE values.
64
+
There is only one kind of implicit conversion: `INTEGER` to `DOUBLE`. This usually takes place during the evaluation of an [expression]({{< relref "/docs/essentials/expressions" >}}) involving INTEGER and DOUBLE values.
65
65
No other conversion is applied unless it's explicit.
Copy file name to clipboardexpand all lines: content/en/docs/essentials/deleting-documents.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,6 @@ To delete only a few documents, use the `WHERE` clause:
22
22
DELETEFROM users WHERE age >13;
23
23
```
24
24
25
-
For every document, the `WHERE` clause evaluates any [expression]({{< relref "/docs/genji-sql/expressions" >}}) that follows, here `age > 13`. If the result is truthy, the document gets deleted.
25
+
For every document, the `WHERE` clause evaluates any [expression]({{< relref "/docs/essentials/expressions" >}}) that follows, here `age > 13`. If the result is truthy, the document gets deleted.
26
26
27
27
The `DELETE` statement doesn't return an error if no document matches the `WHERE` clause, or if there aren't any document in the table.
0 commit comments