並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 1 件 / 1件

新着順 人気順

one-linerの検索結果1 - 1 件 / 1件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

one-linerに関するエントリは1件あります。 SQLite が関連タグです。 人気エントリには 『One-liner for running queries against CSV files with SQLite』があります。
  • One-liner for running queries against CSV files with SQLite

    I figured out how to run a SQL query directly against a CSV file using the sqlite3 command-line utility: sqlite3 :memory: -cmd '.mode csv' -cmd '.import taxi.csv taxi' \ 'SELECT passenger_count, COUNT(*), AVG(total_amount) FROM taxi GROUP BY passenger_count' This uses the special :memory: filename to open an in-memory database. Then it uses two -cmd options to turn on CSV mode and import the taxi.

      One-liner for running queries against CSV files with SQLite
    1

    新着記事