Chciałbym użyć polecenia psql "\ copy", aby pobrać dane z pliku rozdzielanego tabulatorami do Postgres. Używam tego polecenia:
\copy cm_state from 'state.data' with delimiter '\t' null as ;
Ale pojawia się to ostrzeżenie (tabela w rzeczywistości ładuje się dobrze):
WARNING: nonstandard use of escape in a string literal
LINE 1: COPY cm_state FROM STDIN DELIMITER '\t' NULL AS ';'
HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
Jak określić kartę, jeśli „\ t” nie jest poprawne?
\copy cm_state from 'state.data' with delimiter E'\t' null as ';'