i do know a reasonable amount of sql i guess, but new to mysql, and i cant figure out how to create a procedure...
this is my code, really hope someone can help me out....
CREATE PROCEDURE inserttoscrapbookSD
(owner1 VARCHAR(50),
poster1 VARCHAR(50),
Scrap1 VARCHAR(50),
Date_time1 DECIMAL,
InsertedOrNot DECIMAL
)
BEGIN
INSERT INTO scrapbook (Owner)
VALUES(owner1)
END
i know there are a lot of variables being passed, but just using one variable atm because if it works for one, itll work for all.. i tried with and without a semicolon ( ; ) at the end of "END" and at the end of "...VALUES(owner1)" but no luck.. it says
#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 'END' at line 14
thanks in advance


