1

我有一个 SQL 查询,如果我通过 PhpMyAdmin 手动运行它,它可以完美运行,但是,从 PHP 执行时它无法执行。

询问:

LOCK TABLE table_name WRITE;

SELECT @myRight := rgt FROM table_name
WHERE name = 'feildname';

UPDATE table_name SET rgt = rgt + 2 WHERE rgt > @myRight;
UPDATE table_name SET lft = lft + 2 WHERE lft > @myRight;

INSERT INTO table_name(name, lft, rgt) VALUES('new_feild_value', @myRight + 1, @myRight + 2);

UNLOCK TABLES;

我想通过我的 PHP 页面运行查询,该页面具有new_feild_value从用户输入中获取的变量,可以在下面的代码中看到:

<?php
$newname = $_POST['newname'];
$sqlquery = 'LOCK TABLE table_name WRITE;

    SELECT @myRight := rgt FROM table_name
    WHERE name = "feildname";

    UPDATE table_name SET rgt = rgt + 2 WHERE rgt > @myRight;
    UPDATE table_name SET lft = lft + 2 WHERE lft > @myRight;

    INSERT INTO table_name(name, lft, rgt) VALUES("' .$newname . '", @myRight + 1, @myRight + 2);

    UNLOCK TABLES;';
if(!mysqli_query($link,$sqlquery)){ //$link is variable to make sql connection
                echo 'error inserting the comment';
            exit();
            }
 echo 'successfully inserted the values';
?>

上面的 PHP 代码段不起作用,但对于相同的代码段,其他简单的查询都可以工作。有什么问题,我该如何解决?

4

1 回答 1

4

您必须使用 mysqli_multi_query 在 mysqli 的一个语句中运行多个查询。http://php.net/manual/en/mysqli.multi-query.php

于 2012-08-21T21:38:03.280 回答