MySQL Forums
Forum List  »  Stored Procedures

Re: Problem with creating a stored procedure
Posted by: Mike Markgraf
Date: April 19, 2012 04:20PM

I fixed my original error, but I have a new one. I don't think thats the
only error I have though

Error

SQL query:

CREATE PROCEDURE `sp_addChild`
(
IN CID int,
IN fname varchar( 50 ),
IN lname varchar( 50 ),
IN DOB DATETIME,
IN gender varchar( 10 ),
IN goals varchar( 255 ),
IN nameMeaning varchar( 255 ),
IN orphaned tinyint,
IN family varchar( 255 ),
IN eligible tinyint,
IN notes varchar( 255 )
)
BEGIN INSERT INTO 'Children'
(
'Child_ID',
'Child_Fname',
'Child_lname',
'Child_DOB',
'Child_gender',
'Child_goals',
'Child_nameMeaning',
'Child_orphaned',
'Child_family',
'Child_eligible',
'Child_notes'
)
VALUES
(
'CID',
'fname',
'lname',
'DOB',
'gender',
'goals',
'nameMeaning',
'orphaned',
'family',
'eligible',
'notes'
)

MySQL said: Documentation
#1064 - 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 ''Children'(
'Child_ID',
'Child_Fname',
'Child_lname',
'Child_DOB',
'Child_g' at line 14

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Problem with creating a stored procedure
1129
April 19, 2012 04:20PM


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.