I am trying to use the following stored procedure. I get an error on or around my INSERT statement.
All I want to do is populate a table with the customer ids and the property ids that have matching previous customer ids. Any assistance would be appreciated. Thank you!
Code:
CREATE PROCEDURE `f_agent`.`cust_prop` ()
BEGIN
INSERT INTO `f_agent`.`customer__property`
(`cust_prop_cust_id`, `cust_prop_prop_id`)
SELECT `customer`.`cust_id` `cust_prop_cust_id`, `property`.`prop_id` `cust_prop_prop_id`
FROM `f_agent`.`customer`
INNER JOIN `f_agent`.`property`
ON `customer`.`prev_cust_id` = `property`.`prev_cust_id`
END
All I want to do is populate a table with the customer ids and the property ids that have matching previous customer ids. Any assistance would be appreciated. Thank you!