init push

This commit is contained in:
oceanbase-admin
2021-05-31 22:56:52 +08:00
commit cea7de1475
7020 changed files with 5689869 additions and 0 deletions

View File

@ -0,0 +1,15 @@
select * from t3 where c3='2';
select * from t3 where c3>'2';
select * from t3 where c3<'2';
select * from t3 where c3>='2';
select * from t3 where c3<='2';
select * from t3 where c3!='2';
select * from t3 where c3<=>'2';
select * from t3 where c3 is null;
select * from t3 where c3 is false;
select * from t3 where c3 is true;
select * from t3 where c3+'2'>'1';
select * from t3 where c3-'2'>'1';
select * from t3 where c3*'2'>'1';
select * from t3 where c3/'2'>'1';
select * from t3 where length(concat(c3, '2'))>'1';