basic delete works
This commit is contained in:
4
main.cpp
4
main.cpp
@@ -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"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user