more work towards working where

This commit is contained in:
2021-07-06 18:50:03 +02:00
parent e88255c3c3
commit 199a5f9e12
4 changed files with 64 additions and 9 deletions

View File

@@ -17,7 +17,9 @@ int main(int argc, char *argv[]) {
"insert into a (i, s) values(2, 'two')",
"insert into a (i, s) values(3, 'two')",
"insert into a (i, s) values(4, 'four')",
"select i, s from a where i > 2"
"select i, s from a where i > 2",
"select i, s from a where i = 1",
"select i, s from a where s = 'two'"
// "update a set s = 'three' where i = 3"
// "delete from a where i = 3"
// "select i, s from a where i > 0"