Solution:
you will need to add an action to woocommerce_checkout_process.
an example would be:
add_action('woocommerce_checkout_process', 'send_data_to_another_table');
function send_data_to_another_table() {
//Your Code Here
}
Within the function you will need to insert the data in to your wordpress table.