2.data.mql 1.4 KB

1234567891011121314151617181920
  1. insert into /oktest/ccc (v_varchar, v_date, v_time_start, v_time_end, v_text, v_int, v_bigint, v_double, v_float, v_bool)
  2. values ('abc', '2010-10-20', '2010-10-20 12:34:56.789', '2010-10-21 23:45:57.891', '1234567890123456789', 123, 1234567890123, 1.1234567890123456, 1.123456, true)
  3. ;
  4. insert into /oktest/ccc (v_varchar, v_date, v_time_start, v_time_end, v_text, v_int, v_bigint, v_double, v_float, v_bool)
  5. values ('abc', '2010-10-21', '2010-10-21 12:34:56.789', '2010-10-22 23:45:57.891', '1234567890123456789', 123, 1234567890123, 1.1234567890123456, 1.123456, true)
  6. ;
  7. insert into /oktest/ccc (v_varchar, v_date, v_time_start, v_time_end, v_text, v_int, v_bigint, v_double, v_float, v_bool)
  8. values ('abc', '2010-10-22', '2010-10-22 12:34:56.789', '2010-10-23 23:45:57.891', '1234567890123456789', 123, 1234567890123, 1.1234567890123456, 1.123456, true)
  9. ;
  10. insert into /oktest/ccc (v_varchar, v_date, v_time_start, v_time_end, v_text, v_int, v_bigint, v_double, v_float, v_bool)
  11. values ('abc', '2010-10-23', '2010-10-23 12:34:56.789', '2010-10-24 23:45:57.891', '1234567890123456789', 123, 1234567890123, 1.1234567890123456, 1.123456, true)
  12. ;
  13. insert into /oktest/ccc (v_varchar, v_date, v_time_start, v_time_end, v_text, v_int, v_bigint, v_double, v_float, v_bool)
  14. values ('abc', '2010-10-24', '2010-10-24 12:34:56.789', '2010-10-25 23:45:57.891', '1234567890123456789', 123, 1234567890123, 1.1234567890123456, 1.123456, true)
  15. ;