I am trying to import tab delimited text file into a MS Access table. The below is the query I am using.
INSERT INTO table1 (PName,Age) SELECT [pname], [age] FROM [Text;DATABASE=C:\Documents and Settings\MS\My Documents;].table1.txt;"
The above query insert the records into one column like
smith 30
john 30
Let me know how to insert these records into separate column.
Thanks
INSERT INTO table1 (PName,Age) SELECT [pname], [age] FROM [Text;DATABASE=C:\Documents and Settings\MS\My Documents;].table1.txt;"
The above query insert the records into one column like
smith 30
john 30
Let me know how to insert these records into separate column.
Thanks