ClickHouse/docs/ja/sql_reference/table_functions/file.md
2020-04-04 12:15:31 +03:00

4.0 KiB
Raw Blame History

machine_translated machine_translated_rev toc_priority toc_title
true d734a8e46d 37 ファイル

ファイル

ファイルからテーブルを作成します。 この表関数は次のようになります urlhdfs もの。

file(path, format, structure)

入力パラメータ

  • path — The relative path to the file from user_files_path. 読み取り専用モードのglobsに続くファイルサポートのパス: *, ?, {abc,def}{N..M} どこに N, M — numbers, `'abc', 'def' — strings.
  • format — The 書式 ファイルの
  • structure — Structure of the table. Format 'column1_name column1_type, column2_name column2_type, ...'.

戻り値

指定したファイルにデータを読み書きするための、指定した構造体を持つテーブル。

例えば

設定 user_files_path そして、ファイルの内容 test.csv:

$ grep user_files_path /etc/clickhouse-server/config.xml
    <user_files_path>/var/lib/clickhouse/user_files/</user_files_path>

$ cat /var/lib/clickhouse/user_files/test.csv
    1,2,3
    3,2,1
    78,43,45

テーブルからtest.csv そしてそれからの最初の二つの行の選択:

SELECT *
FROM file('test.csv', 'CSV', 'column1 UInt32, column2 UInt32, column3 UInt32')
LIMIT 2
┌─column1─┬─column2─┬─column3─┐
│       1 │       2 │       3 │
│       3 │       2 │       1 │
└─────────┴─────────┴─────────┘
-- getting the first 10 lines of a table that contains 3 columns of UInt32 type from a CSV file
SELECT * FROM file('test.csv', 'CSV', 'column1 UInt32, column2 UInt32, column3 UInt32') LIMIT 10

パス内のグロブ

複数のパスコンポーネン 処理されるためには、ファイルが存在し、パスパターン全体(接尾辞や接頭辞だけでなく)に一致する必要があります。

  • * — Substitutes any number of any characters except / 空の文字列を含む。
  • ? — Substitutes any single character.
  • {some_string,another_string,yet_another_one} — Substitutes any of strings 'some_string', 'another_string', 'yet_another_one'.
  • {N..M} — Substitutes any number in range from N to M including both borders.

構造との {} に類似していて下さい 遠隔テーブル機能).

例えば

  1. 次の相対パスを持つ複数のファイルがあるとします:
  • some_dir/some_file_1
  • some_dir/some_file_2
  • some_dir/some_file_3
  • another_dir/some_file_1
  • another_dir/some_file_2
  • another_dir/some_file_3
  1. これらのファイルの行数を照会します:
SELECT count(*)
FROM file('{some,another}_dir/some_file_{1..3}', 'TSV', 'name String, value UInt32')
  1. クエリの量の行のすべてのファイルのディレクトリ:
SELECT count(*)
FROM file('{some,another}_dir/*', 'TSV', 'name String, value UInt32')

!!! warning "警告" ファイルのリストに先行するゼロを持つ数値範囲が含まれている場合は、各桁のために中かっこで囲みます。 ?.

例えば

クエリからのデータファイル名 file000, file001, … , file999:

SELECT count(*)
FROM file('big_dir/file{0..9}{0..9}{0..9}', 'CSV', 'name String, value UInt32')

仮想列

  • _path — Path to the file.
  • _file — Name of the file.

また見なさい

元の記事