CREATE PROCEDURE CategoryInsert (IN c02 VARCHAR) BEGIN INSERT INTO Category(CategoryName) VALUES (c02); END;