結合する必要がある 3 つの SQLite データベースがあります。私はすでに次の手順を試しました:
(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
しかし、正しく変換されません(出力はpicture.pngです)
QUOTE の反対で、変換されたデータを返す関数が必要ですか?
ご助力ありがとうございます :)