We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2c2b1 commit 8db1c6bCopy full SHA for 8db1c6b
doc/user_guide/statements/select.md
@@ -39,7 +39,7 @@ A `SELECT` statement can contain one or more derived columns. Here we describe a
39
- The `asterisk / *` is a wildcard representing all fields. Create an asterisk using the `all()` method.
40
41
```java
42
- final Select selectWithOneField = factory.select().all();
+ final Select selectWithAllFields = factory.select().all();
43
```
44
45
- The factory method `function(...)` adds a pre-defined function to a statement that evaluates to a value expression.
@@ -172,4 +172,4 @@ Select select = factory.select().all();
172
select.from().table("t");
173
select.orderBy(column("t", "city"), column("t", "price"))
174
.nullsFirst().asc();
175
-```
+```
0 commit comments