命令不同步;你现在不能运行这个命令

时间:2015-01-24 16:14:16

标签: php mysql stored-procedures

我在数据库中创建了2个存储过程。当我同时调用它时,第一次运行完美,但第二个程序给出了上面给出的运行(命令不同步;你现在不能运行这个命令); 程序是:

Dispemp 1。

Begin
select * from table_name;
end

findemp 2。

begin
select % from table_name where empno=emp;
end

我称之为:

$query="Call findemp("empno")";
$res=mysqli_query($query);

,第二个是

$query="Call dispemp()";
$res=mysqli_query($query);

0 个答案:

没有答案