How to select multiple rows from mysql with one query and use them in php(如何使用一个查询从 mysql 中选择多行并在 php 中使用它们)
问题描述
我目前有一个如下图所示的数据库.
I currently have a database like the picture below.
其中有一个查询选择了 number1 等于 1 的行.当使用
Where there is a query that selects the rows with number1 equaling 1. When using
mysql_fetch_assoc()
在 php 中我只得到第一个有没有办法得到第二个?就像通过像
in php I am only given the first is there any way to get the second? Like through a dimesional array like
array['number2'][2]
或类似的东西
推荐答案
使用重复调用 mysql_fetch_assoc.它记录在 PHP 手册中.
Use repeated calls to mysql_fetch_assoc. It's documented right in the PHP manual.
http://php.net/manual/function.mysql-fetch-assoc.php
// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
echo $row["userstatus"];
}
如果需要,您可以使用它来构建多维数组,以便在脚本的其他部分使用.
If you need to, you can use this to build up a multidimensional array for consumption in other parts of your script.
这篇关于如何使用一个查询从 mysql 中选择多行并在 php 中使用它们的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用一个查询从 mysql 中选择多行并在 php 中
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01