3.check.mql 437 B

12345678910111213141516
  1. select v_varchar, v_date, v_time_start as "o_time_start", v_time_end as "o_time_end", dateformat(v_time_start,'yyyy-MM-dd HH:mm:ss') as "v_time_start", dateformat(v_time_end,'yyyy-MM-dd HH:mm:ss') as "v_time_end" from /oktest/ccc
  2. order by v_time_end desc
  3. /**
  4. output()
  5. **/
  6. ;
  7. {
  8. "sql": "select v_varchar, v_date as s_date, cast(v_date as int), v_time_start, v_time_end from /oktest/ccc order by v_time_end desc"
  9. }
  10. /**
  11. output()
  12. **/
  13. ;