is there a way to import a file into a table with a separator ":"?
For example, I have a test.txt file with
value1:result1
value2:result2
want to use something like this in the CLI:
sqlite> .import test.txt table
and in the end I would:
+--------------+
|value1|result1|
+------+-------+
|value2|result2|
+------+-------+
source
share