MySQL Forums
Forum List  »  Newbie

Getting Error 1064(42000) when trying to do transaction processing in MySQL
Posted by: Ken Bond
Date: May 30, 2015 03:57PM

Trying to do transaction processing in MySQL and get the following error "ERROR 1064 (42000): 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 'INSERT INTO ServicePlans(PlanID,PlanName,PlanDescription,PlanPrice,DiscountedPri' at line 2"

mysql> START TRANSACTION
    -> INSERT INTO ServicePlans(PlanID,PlanName,PlanDescription,PlanPrice,Discou
ntedPrice)
    -> VALUES('C1001','TeleComm Course','Course on Telecommunications',45.00,35.
00)
    -> COMMIT;



Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.