I export the data from Excel 2011. The rows look like:
100|Agricultural Production-Crops|Agriculture&Forestry
I create the table in SQLite using: create table sic (id integer, industry text, category text); Then I input:
.mode csv sic
then:
.separator ","
then:
.import SIC.csv sic;
And I got the error: "Error: no such table: sic;" Why? What can I do?