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

Recommended Answers

All 2 Replies

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.