宜しくお願い致します。
・環境
SQLite version 3.7.17
CentOS 7
SQLite公式ドキュメントでは下記のように記されています。
[ Command Line Shell For SQLite ]
( https://www.sqlite.org/cli.html#importing_csv_files )
7.5. Importing CSV files
Use the ".import" command to import CSV (comma separated value) data into an SQLite table. The ".import" command takes two arguments which are the source from which CSV data is to be read and the name of the SQLite table into which the CSV data is to be inserted. The source argument is the name of a file to be read or, if it begins with a "|" character, specifies a command which will be run to produce the input CSV data.
テーブルが無ければ、csvをimportすると自動的にテーブルを生成するとあります。
しかし実際に行ってみるとインポートできずに下記エラーになります。
Error: no such table: table-name
この件について何かご存じの方おられましたらご教授いただけると幸いです。
宜しくお願い致します。
回答2件
あなたの回答
tips
プレビュー