| 12345678910111213141516171819202122232425262728293031323334 |
- -- ============================================================
- -- Field Case Sensitive 测试
- -- ============================================================
- -- 1. 查询时使用正确大小写
- select s_name, s_Value from /test/aaa/test_syntax where s_name='syntax_001'
- /**
- output()
- **/
- ;
- -- 2. 查询带不同大小写字段
- select s_name, S_EXTRA from /test/aaa/test_syntax where s_name='syntax_001'
- /**
- output()
- **/
- ;
- -- 3. 查询时使用混合大小写
- select s_name, s_data from /test/aaa/test_syntax where s_name='syntax_002'
- /**
- output()
- **/
- ;
- -- 4. 更新大小写字段
- update /test/aaa/test_syntax set S_EXTRA='UPDATED EXTRA' where s_name='syntax_001'
- ;
- select S_EXTRA from /test/aaa/test_syntax where s_name='syntax_001'
- /**
- output()
- **/
- ;
|