[Solved] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near [closed]


Replace

insert_into

with

insert into

And better use the YYYY-MM-DD date format

insert into tb_loan (Product_Code, Customer_Code, Loan_Amount, Rate_Interest, Amount_Tenure, Emi_Amount, Emi_Start, Emi_End) 
VALUES (0,0,'10000',10.37,'20','546.6','2013-10-25','2013-10-25')

3

solved You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near [closed]