This week's book giveaway is in the Open Source Projects forum. We're giving away four copies of Eclipse Collections Categorically: Level up your programming game and have Donald Raab on-line! See this thread for details.
Sorry i know this is not particular section to post my issue but there is no section available for MySql due to that i am posting my issue over here.
This is my stored procedure but it is not working ...
CREATE PROCEDURE sp_select_custId (IN custId INTEGER) BEGIN select * from customer c,tapedelivery t where c.CustomerID=t.CustomerId And c.CustomerID = custId; END;
But it is not running ..it is giving error ..please suggest me correct syntax/way to create this procedure.