开发者

generic Mysql stored procedure

开发者 https://www.devze.com 2022-12-25 09:11 出处:网络
I have the fallowing stored procedure: CREATE PROCEDURE `get`(IN tb VARCHAR(50), IN id INTEGER) BEGIN SELECT * FROM tbWHERE Indx = id;

I have the fallowing stored procedure:

CREATE PROCEDURE `get`(IN tb VARCHAR(50), IN id INTEGER)
BEGIN
    SELECT * FROM tb  WHERE Indx = id;
END//

When I call get(user,1) I get the following:

ERROR 1054 (42S22): Unknown column 'user开发者_如何学JAVA' in 'field list'


You can't use a variable as a table name in SQL because it compiles that in when the procedure is compiled. Try using prepared statements:

CREATE PROCEDURE `get`(IN tb VARCHAR(50), IN id INTEGER)
BEGIN
    PREPARE stmt1 FROM CONCAT('SELECT * FROM ', tb, ' WHERE Indx = id');
    EXECUTE stmt1;
    DEALLOCATE PREPARE stmt1;
END//

Note however that this is going to be slower.


can you call it as get('user',1) ?

IN tb VARCHAR(50) makes it expect a 'string', you are passing something the SQL parser interpretes as the field user and that is not know.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号