12data.mql 654 B

123456789101112131415161718
  1. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values (?,?,?,?,?)
  2. /**
  3. loop(10)
  4. params('{%d,rand}',{%d,rand},{%d,rand},{%d,rand},{%d,rand})
  5. **/
  6. ;
  7. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values ('A1',51,41,51,41)
  8. ;
  9. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values ('A2',41,51,41,51)
  10. ;
  11. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values ('A3',31,21,31,21)
  12. ;
  13. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values ('A4',21,31,21,31)
  14. ;
  15. insert into /test/order (v_text, v_int, v_bigint, v_float, v_double) values ('A5',11,11,11,11)
  16. ;