From e858d21af036108d67e746f4ff52603e920b103c Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 11 Sep 2023 15:42:27 -0400 Subject: [PATCH] Correct examples --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 60f802b..72b5fde 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,6 @@ Querying a table is similar to SQL. ```dust names = select(animals, "name"); 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.