我想在单个语句中执行 3 个以上的查询。有可能吗?
我需要将值插入表中选择整个表计数用户。
是否可以在一个语句中完成所有这些操作。
谢谢
您只能在 mysqli using 中使用超过 3 个查询mysqli_multi_query()
,但 mysql 不支持它。
示例代码:
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
/* execute multi query */
if ($mysqli->multi_query($query)) {
do {
/* store first result set */
if ($result = $mysqli->store_result()) {
while ($row = $result->fetch_row()) {
printf("%s\n", $row[0]);
}
$result->free();
}
/* print divider */
if ($mysqli->more_results()) {
printf("-----------------\n");
}
} while ($mysqli->next_result());
}
/* close connection */
$mysqli->close();
?>
相应地改变它。它显示了使用 mysqli 的多查询。