HSQLDB importing a text table file into a traditional table
问题 i have two the same table structure cache table (normaltable) text table (textfiletable) i want to copy data from table [2] into table [1] i'm using this insert syntax INSERT INTO normaltable ("COL1", "COL2", "COL3") SELECT COL1, COL2, COL3 FROM textfiletable; i get this error data exception:string data, right truncation/Error code: -3401/state: 22001 when using another insert syntax SELECT COL1, COL2, COL3 INTO normaltable FROM textfiletable; i get this error unexpected token : INTO required