relational operators added
This commit is contained in:
3
main.cpp
3
main.cpp
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user