⌘+k ctrl+k
1.3 (stable)
Search Shortcut cmd + k | ctrl + k
Encodings Extension

Warning The Encodings extension will be available with the release of DuckDB v1.3.0.

The encodings extension adds supports for reading CSVs using more than 1,000 character encodings available in the ICU data repository.

Installing and Loading

INSTALL encodings;
LOAD encodings;

Usage

Refer to the encoding while reading from files:

FROM read_csv('my_shift_jis.csv', encoding = 'shift_jis');