Hi
i have table with following structure
mysql> show create table proc\G;
*************************** 1. row ***********
Table: proc
Create Table: CREATE TABLE `proc` (
`a` varchar(16) default NULL,
`b` varchar(16) default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
i want to insert values into table proc through procedure
what should be the syntax of procedure
Thanks in advance as I am new for procedure