I have a three SQLite databases, that need to be joined together. I have already tried following procedure:
(1) SELECT column1, column2, quote(column3) from table1 - quote(X) is to convert blob field into string field
(2)I import table1.csv back into database, where i define first two fields as INTEGERin third as STRING
(3) I use: INSERT INTO table_new (column1, column2, column3) SELECT column1, column2, column3 FROM table1
but it doesn't convert correctly (output is a picture.png)
There should be an function that is opposite to QUOTE and would return me back my converted data?
Thank you very much for your help :)