Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

TSV

Read a TSV file:

SELECT *
FROM read_csv('penguins.tsv', delim = '\t');

Write a table to a TSV file:

COPY penguins TO 'penguins.tsv' (DELIMITER '\t');