mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
result updated
This commit is contained in:
parent
528a24720f
commit
86da817cec
1 changed files with 11 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue