I have seen other posts and tried the answers but it still will not create the table for me.
I simply want to import a .tab file into a new sqlite3 table on the fly.
I have tried .mode csv with a .separator '\t' and .mode tabs
I have the following command and error.
sqlite> .mode tabs
sqlite> .import /storage/mgymrek/gtex-estrs/revision/mastertables/Adipose-Subcutaneous_master.csv Temp1
Error: no such table: Temp1
I have also tried
sqlite3 -separator '\t' estr.db ".import Adipose-Subcutaneous_master.csv Temp1"
Error: no such table: Temp1
Please help!