RosettaCodeData/Task/Write-float-arrays-to-a-text-file/Delphi/write-float-arrays-to-a-text-file-4.pas
2025-02-27 18:35:13 -05:00

5 lines
180 B
ObjectPascal

create or replace table neat (x DECIMAL(38,3), y DECIMAL(38,5));
insert into neat from t;
from neat;
copy neat to 'output.tsv' (HEADER true, DELIMITER '\t');
.shell cat output.tsv