basic delete works

This commit is contained in:
2021-07-09 23:42:43 +02:00
parent ddb9441e23
commit 5e69ce1047
5 changed files with 13 additions and 3 deletions

View File

@@ -22,10 +22,12 @@ int main(int argc, char *argv[]) {
"select i, s from a where i = 1",
"select i, s from a where s = 'two'",
"select i, s from a where i <= 3 and s = 'one'",
"select i, s from a where i > 0",
"delete from a where i = 4",
"select i, s from a where i > 0",
"update a set f = 9.99 where i = 3",
// "update a set s = 'three', f = 1.0 + 2.0 where i = 3",
"select i, s, f from a where i = 3"
// "delete from a where i = 4",
// "select i, s from a where i > 0"
};