I have a CSV file that has schema: customer_name, customer_surname, customer_street, customer_city, customer_order_a, customer_order_b My SQL schema looks like: Table Customer: id, name, surname Table Address: address_id, customer_id, street, city Table order: order_id, customer_id Is there a way from within MySQL to map this CSV onto the SQL? Ie, telling it to add a record […]
The post CSV to SQL Importing with different schema appeared first on BlogoSfera.