所以我有这两个存储过程。第一个工作正常,但第二个不会。它仍然执行第一个。我尝试注释掉除第二个存储过程之外的其他内容,它工作正常。我在这里做错了什么?
if($view='group'){
$sql = "CALL sp_edit_biochem_group('$item_group_ID','$item_group_code','$item_group_desc','$item_group_qty','$uom','$location','$inv_by','$as_of_date')";
}
elseif ($view='breakdown'){
$sql = "CALL sp_edit_biochem_breakdown('$status','$as_of_date','$serial_no','$item_breakdown_ID')";
}