Your SELECT clause can have static values in it that do not relate to fields in the source file. e.g. if I have a text file with three columns, A B C and I want to save the contents of that file into a table that has A B C D E, I could use the following query: SELECT A, B, C, 'default', NULL INTO tablename...