Rafael, I did not quite understand how you want to import this spreadsheet into MySQL, if you are using the Java language to import it, you can use the SimpleDateFormat method (#) to format your date, it is very simple and easy to implement:
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd");
String dateInString = "07/06/2013";
try {
Date date = formatter.parse(dateInString);
System.out.println(date);
System.out.println(formatter.format(date));
} catch (ParseException e) {
e.printStackTrace();
}
This snippet of code is already there. However, if you are just wanting to load up MySQL you can use a very useful tool, the Pentaho Data Integration ( Pentaho Data Integration >), very good software and I particularly like it a lot.
I hope I have helped!
Abs