Back to Clickhouse

sqlite

docs/en/sql-reference/table-functions/sqlite.md

26.4.1.1-new1.0 KB
Original Source

sqlite Table Function

Allows to perform queries on data stored in a SQLite database.

Syntax {#syntax}

sql
sqlite('db_path', 'table_name')

Arguments {#arguments}

  • db_path — Path to a file with an SQLite database. String.
  • table_name — Name of a table in the SQLite database. String.

Returned value {#returned_value}

  • A table object with the same columns as in the original SQLite table.

Example {#example}

Query:

sql
SELECT * FROM sqlite('sqlite.db', 'table1') ORDER BY col2;

Result:

text
┌─col1──┬─col2─┐
│ line1 │    1 │
│ line2 │    2 │
│ line3 │    3 │
└───────┴──────┘