I have following table : 
 
mytab1 
------ 
my_code varchar(3) 
my_amt  float(10,2) 
 
 
I also have the following file my.csv  to load: 
 
ABC,23,41 
DEF,234,99 
GHI,N/A 
JKL,99.50 
 
My 'load data infile' bombs loading the 3rd row.  Obviously, 
it not the correct data type.  On my load data script I would 
like to say 'if N/A then load a null'.  How can I do this in 
mysql?  Can I use the SET command somehow? 
 
I'm new to mysql.  Thanks.  
 
Mike 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to