relational operators added

This commit is contained in:
2021-07-08 07:43:10 +02:00
parent 199a5f9e12
commit e44b72ce53
4 changed files with 38 additions and 15 deletions

View File

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