I am writing this stored procedure and it keeps erroring out:
create procedure RetensionRate ()
BEGIN
CREATE TEMPORARY TABLE mytemptable (Week int, beginning_Count bigint, Ending_Count bigint, Retension_Rate decimal);
insert into mytemptable select Week, Beginning_Count,Ending_Count...