result updated

This commit is contained in:
serg@serg.mylan 2003-05-04 11:00:45 +02:00
parent 528a24720f
commit 86da817cec

View file

@ -38,4 +38,15 @@ NULL d 7
delete from t1 where misc > 5 and bool is null;
select * from t1 where misc > 5 and bool is null;
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;