table_io.sql 333 B

1234567891011121314151617
  1. /* postgres can not */
  2. use plato;
  3. select * from BigDates order by row;
  4. insert into @Output with truncate
  5. select * from BigDates
  6. where row > -100
  7. order by row;
  8. commit;
  9. select * from @Output order by row;
  10. select row, cast(d32 as string), cast(dt64 as string), cast(ts64 as string), cast(i64 as string)
  11. from BigDates
  12. order by row;