Commit 6b1d89b1 authored by unknown's avatar unknown

result updated

parent 18409f75
...@@ -38,4 +38,15 @@ NULL d 7 ...@@ -38,4 +38,15 @@ NULL d 7
delete from t1 where misc > 5 and bool is null; delete from t1 where misc > 5 and bool is null;
select * from t1 where misc > 5 and bool is null; select * from t1 where misc > 5 and bool is null;
bool not_null misc bool not_null misc
select count(*) from t1;
count(*)
2
delete from t1 where 1 > 2;
select count(*) from t1;
count(*)
2
delete from t1 where 3 > 2;
select count(*) from t1;
count(*)
0
drop table t1; drop table t1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment