传递多个参数mySql时,CALL语句语法错误

时间:2013-06-19 18:47:00

标签: mysql database syntax-error

我在MySQL 5.6.11中运行查询。我创建了以下存储过程

DELIMITER $$

CREATE DEFINER=`root`@`localhost` PROCEDURE `digital_audio_test_detail`(IN temp VARCHAR(50), IN temp2 VARCHAR(50))
BEGIN
    SET @temp_query = CONCAT('SELECT * FROM ',temp);
    SET @final_query = CONCAT(@temp_query,'WHERE', temp,'.unit_test_result_id =',temp2);
    PREPARE stmt FROM @final_query;
    EXECUTE stmt;
END

当我在查询页面中调用此过程时,我的CALL会出现语法错误。这就是我执行查询的方式。

SELECT unit_test_result.*, @temp1 := unit_test.name, @temp2 := unit_test_result.id 
FROM unit_test_result, unit_test 
WHERE unit_test_result.test_run_id = 2 
  AND unit_test.id = unit_test_result.unit_test_id;
CALL digital_audio_test_detail(@temp1, @temp2);

我必须将两个参数传递给该过程。当我创建一个只有第一个参数的过程并将其调用一个参数时,它执行正常。但当我使用两个参数时,我得到语法错误。需要帮忙。感谢

1 个答案:

答案 0 :(得分:2)

SET @final_query = CONCAT(@temp_query,'WHERE', temp,'.unit_test_result_id =',temp2);

您正在构建的字符串不是有效查询。

在WHERE之前和之后添加空格,如

SET @final_query = CONCAT(@temp_query,' WHERE ', temp,'.unit_test_result_id =',temp2);