我想知道如何在 MySQL 中定义或声明内部表
我是 MySQL 的新手,我不知道语法
如您所见,我创建了存储过程
CREATE DEFINER=`root`@`localhost` PROCEDURE `MySP`(
actioncode VARCHAR(5),
TNewsID BIGINT
)
BEGIN
IF actioncode = 1 then -- Retrive all from the database --
select *
from emp.tbnews;
elseIF actioncode = 2 then -- Retrive all from the database By NewsID --
select NewsID,NewsSubject,NewsSubjectAR,NewsDetails,NewsDetailsAR,CreatedOn,DisplayOrder,
AllowDisplay,img
from emp.tbnews
Where NewsID=TNewsID;
elseIF actioncode = 3 then -- fkjskldfjklsdf --
select NewsID,NewsSubject,NewsSubjectAR,NewsDetails,NewsDetailsAR,CreatedOn,DisplayOrder,
AllowDisplay,img
from emp.tbnews;
END IF;
END
Run Code Online (Sandbox Code Playgroud)
我真正想要的是在 IF 语句之前声明内部表
在 Sql Server 中,我是这样做的
declare @tbTemp table (
a as int,
b as char...etc.
)
Run Code Online (Sandbox Code Playgroud)
因为我想在后面加上插入语句
IF actioncode = 1
Insert into @tbTemp
Run Code Online (Sandbox Code Playgroud)
所以请如果你知道告诉我怎么做
向每一个人致以最诚挚的问候。
create temporary table tmp
(
id int unsigned not null,
name varchar(32) not null
)
engine=memory; -- change engine type if required e.g myisam/innodb
insert into tmp (id, name) select id, name from foo... ;
-- do more work...
select * from tmp order by id;
drop temporary table if exists tmp;
Run Code Online (Sandbox Code Playgroud)
或者
create temporary table tmp engine=memory select id, name from foo... ;
-- do more work...
select * from tmp order by id;
drop temporary table if exists tmp;
Run Code Online (Sandbox Code Playgroud)