用于MySQL的INSERT查询中的用户定义变量

时间:2012-05-22 14:53:00

标签: mysql variables insert user-defined

我需要在MySQL的INSERT查询中使用用户定义的变量,请参阅下面的示例:

INSERT INTO `posts`(`id`) VALUES(NULL);
SET @last_insert_id = LAST_INSERT_ID();
INSERT INTO `comments`(`id`, `post_id`) VALUES(NULL, "@last_insert_id");

这个例子不起作用并插入0.我做错了什么?

1 个答案:

答案 0 :(得分:15)

无需将其存储在变量中。您只需在以下LAST_INSERT_ID()声明中调用INSERT即可。

INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, LAST_INSERT_ID());

...除非您有多个插件要使用该ID执行。

在这种情况下,使用变量的正确语法是不加引号:

INSERT INTO `posts`(`id`) VALUES (NULL);
SET @last_insert_id = LAST_INSERT_ID();
/* Several new entries using the same @last_insert_id */
INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, @last_insert_id);
INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, @last_insert_id);
INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, @last_insert_id);
INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, @last_insert_id);
INSERT INTO `comments`(`id`, `post_id`) VALUES (NULL, @last_insert_id);