DROP TEMPORARY TABLE IF EXISTS temptable;
CREATE TEMPORARY TABLE temptable(
name char(30),regno int;
)
delete from temptable;
INSERT INTO temptable values(calling another Procedure Here);
CREATE TEMPORARY TABLE temptable(
name char(30),regno int;
)
delete from temptable;
INSERT INTO temptable values(calling another Procedure Here);