如何在sqlfiddle中调用存储过程?

时间:2019-07-02 02:33:02

标签: mysql sql stored-procedures sqlfiddle

我在sqlfiddle的“模式”面板中添加了以下内容:

CREATE TABLE tb_patient (
  `idPatient` INTEGER,
  `prenomPatient` VARCHAR(12),
  `nomPatient` VARCHAR(6)
)//

INSERT INTO tb_patient
  (`idPatient`, `prenomPatient`, `nomPatient`)
VALUES
  ('267', 'Marie Claude', 'CARRIE'),
  ('268', 'Marie Claude', 'CARRIE')//


create procedure findTwins()
begin 
    declare getNom varchar(40);
    declare getPrenom varchar(40);
    declare getId int default 1;
    declare getId2 int default 1;
    if(select count(*) from tb_patient group by nomPatient,prenomPatient having count(*)=2 limit 1)
    then
        select nomPatient,prenomPatient into getNom,getPrenom from tb_patient group by nomPatient,prenomPatient having count(*)=2 limit 1; 
        set getId=(select min(idPatient) from tb_patient where nomPatient=getNom and prenomPatient=getPrenom);
        set getId2=(select  max(idPatient) from tb_patient where nomPatient=getNom and prenomPatient=getPrenom);
        select concat(getNom,' ',getPrenom,' ',getId,' ',getId2) as Patient;
    end if; 
end//

我从定界符菜单中选择了//,并成功构建了架构。

然后我输入:

CALL FindTwins
在查询面板中

。当我尝试运行查询时,收到错误消息:

  MySQL的查询面板中不允许使用

DDL和DML语句。仅允许使用SELECT语句。将DDL和DML放在架构面板中。

如果我无法在通话中拨打电话,我应该如何查看该过程的结果 查询面板?

http://www.sqlfiddle.com/#!9/b03ede/4

1 个答案:

答案 0 :(得分:2)

这是一个SQLFiddle错误。来自https://github.com/zzzprojects/sqlfiddle3/issues/5

  

不幸的是,我认为此声明目前在此方面不起作用   版本。

     

好消息是我们当前正在开发一个新版本。的   新版本应该可以做到这一点,但不幸的是,我们   需要更多时间才能释放它。

这似乎在早期版本Execute triggers stored procedures on SqlFiddle. Mysql中有效。