Import CSV to MySQL, with custom registration field information

As far as I know there is nothing native in WP to parse CSV files and stuffing this into database directly doesn’t seem like a good idea either.

  1. You can parse your CSV with PHP, see fgetcsv() for starters.

  2. Then use update_user_meta() to create those values.