Correct examples
This commit is contained in:
parent
0cd5629483
commit
e858d21af0
@ -169,7 +169,6 @@ Querying a table is similar to SQL.
|
|||||||
```dust
|
```dust
|
||||||
names = select(animals, "name");
|
names = select(animals, "name");
|
||||||
youngins = where(animals, 'age < 5');
|
youngins = where(animals, 'age < 5');
|
||||||
old_species = select_where(animals, "species", 'age > 5');
|
|
||||||
```
|
```
|
||||||
|
|
||||||
The commands `create_table` and `insert` make sure that all of the memory used to hold the rows is allocated at once, so it is good practice to group your rows together instead of using a call for each row.
|
The commands `create_table` and `insert` make sure that all of the memory used to hold the rows is allocated at once, so it is good practice to group your rows together instead of using a call for each row.
|
||||||
|
Loading…
Reference in New Issue
Block a user