From: Thimble Smith Date: March 31 1999 5:30pm Subject: Re: ... List-Archive: http://lists.mysql.com/mysql/1247 Message-Id: <19990331103001.E11535@desert.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit On Wed, Mar 31 at 04:42:27PM, Cristina Durana Chambre de Sá Moita wrote: > Is there a way to use load data infile ... (I just have seen in > the manual!!!!) to load a column of a table, instead of the all > table??? Cristina, if you're on a decent OS you should be able to combine a couple of tools to get the job done. For example, if you have perl installed you can use perl to select only the column of data that you want, and then pipe it into mysqlimport. I think that would work.... Another option is to convert the data you have into UPDATE statements (again, using sed or perl), and pipe that through the 'mysql' client program. You have to be careful to escape special characters in the data, though, if you do this. Tim