We frequently import files that contains a header section (normally two rows). When we read this file using DuckDb the query looks as follows:
CREATE TABLE Spotify AS SELECT * FROM read_csv_auto('track-for-*.txt', AUTO_DETECT=TRUE,DELIM='\t',QUOTE='',HEADER=true,SKIP=2);
To open the same file with Tad we need to remove the two first lines. It would be very nice if Tad could support the SKIP parameter when opening a file.
We frequently import files that contains a header section (normally two rows). When we read this file using DuckDb the query looks as follows:
To open the same file with Tad we need to remove the two first lines. It would be very nice if Tad could support the
SKIP
parameter when opening a file.