| 12345678910111213141516171819202122232425262728293031 |
- -- ============================================================
- -- bool 类型搜索测试
- -- ============================================================
- -- 1. 搜索 bool=true
- select * from /test/aaa/test_search where s_bool=true
- /**
- output()
- **/
- ;
- -- 2. 搜索 bool=false
- select * from /test/aaa/test_search where s_bool=false
- /**
- output()
- **/
- ;
- -- 3. 复合条件:bool + int
- select * from /test/aaa/test_search where s_bool=true and s_int>10
- /**
- output()
- **/
- ;
- -- 4. 复合条件:bool + string
- select * from /test/aaa/test_search where s_bool=true and s_name='search_int_001'
- /**
- output()
- **/
- ;
|