Files
oceanbase/unittest/sql/resolver/sql/test_resolver_precast.test
oceanbase-admin cea7de1475 init push
2021-05-31 22:56:52 +08:00

16 lines
520 B
Plaintext

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';