Forums | Webyog
Tools to manage and monitor MySQL databases
forums › forums › SQLyog › Using SQLyog › Import from multiple txt files
Pretty much you just can't do that. The import is basically a seriese of inserts, one for each record.
YOur best bet is to use something like Excell to stitch the fields together into records, then save the final as a csv. Then try and import that.
HTH,
=C=
Thanks for you reply Cal, but I found the solution. First, I switched to my Linux box (you know, there are more useful tools), then searched inside textutils package….and the command is
$ paste -d , file1.txt file2.txt ….
Regards.