| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- -- select id,v_int,v_bigint,v_float,v_double from /test/basic where v_int between 1 and 5
- -- /**
- -- output()
- -- **/
- -- ;
- select id,v_int,v_bigint,v_float,v_double,v_varchar from /test/basic where v_int between 1 and 5
- /**
- output()
- count(5)
- **/
- ;
- select id,v_int,v_bigint,v_float,v_double,v_varchar from /test/basic where v_int between 1 and ?
- /**
- output()
- params(1)
- count(4)
- **/
- ;
- select id,v_int,v_bigint,v_float,v_double,v_varchar from /test/basic where v_int between ? and 5
- /**
- output()
- params(5)
- count(1)
- **/
- ;
- select id,v_int,v_bigint,v_float,v_double,v_varchar from /test/basic where v_int between ? and ?
- /**
- output()
- params(1,5)
- count(5)
- **/
- ;
|