I have two Excel sheets, one containing customer information :
+-------+-------+-------+--------+
| Fname | Lname | Birth | Gender |
+-------+-------+-------+--------+
and a second one with transaction logs formatted as follows :
+------+--------+
| Date | Amount |
+------+--------+
My SQL table is empty and has the following fields :
+----+------------+-----------+--------+-------+-------+------+
| ID | First Name | Last Name | Gender | Birth | Spent | Date |
+----+------------+-----------+--------+-------+-------+------+
I'm looking for a way to merge the two sheets and transfer the data into the table but cannot figure out an efficient way to do it.