4

我想从这些 id 中显示四 (4) 个项目的名称:我可以这样做吗?

SELECT item_name from items WHERE item_id IN ('001', '012', '103', '500')

或者

SELECT item_name from items WHERE item_id = '001' or item_id = '012' or item_id = '103' or item_id = '500'

回应所有答案

好吧,大多数答案都说它有效,但实际上并没有。这是我的代码:

$query = "SELECT `item_name` from items WHERE item_id IN('s001','a012','t103','p500')";

$result = mysql_query($query, $conn) or die (mysql_error());
$fetch =  mysql_fetch_assoc($result) or die (mysql_error());
$itemsCollected = $fetch['item_name'];
echo $itemsCollected;

item_id字母数字。

4

5 回答 5

10

您可以执行其中任何一项,但对于任何大型查询,IN 查询都更有效。很久以前我做了一些简单的测试,结果表明使用 IN 结构的速度大约快 10 倍。如果您询问语法是否正确,那么是的,它看起来很好,除了缺少分号来完成语句。

编辑:看起来你问的实际问题是“为什么这些查询只返回一个值”。嗯,看看你贴的示例代码,问题就在这里:

$fetch = mysql_fetch_assoc($result) or die (mysql_error());
$itemsCollected = $fetch['item_name'];
echo $itemsCollected;

正如Pax 指出的那样,您需要循环并迭代,直到没有更多的结果要获取。请参阅mysql_fetch_assoc的 PHP 手册页:

$sql = "SELECT item_name from items WHERE item_id IN('s001','a012')";
$result = mysql_query($sql);

if (!$result) {
    echo "Could not successfully run query ($sql) from DB: " . mysql_error();
    exit;
}

if (mysql_num_rows($result) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}

// 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"];
}

mysql_free_result($result);
于 2009-02-13T04:44:15.293 回答
4

是的,这两个都应该可以正常工作。你看到的实际问题是什么?

如果如您所说,只返回一条记录,请尝试:

select item_name from items order by item_id

并检查完整的输出以确保您有 001、012、103 和 500 的条目。

如果这两个查询都只返回一行,我怀疑不会。

如果它们都存在,请检查表定义,可能该列是 CHAR(4) 并且包含其他空格。您可能确实在 MySQL 中发现了一个错误,但我对此表示怀疑。

编辑后:

这是一个 perl/mysql 问题,而不是 SQL 问题:一次mysql_fetch_array()返回数据集的一行,并前进一个指向下一行的指针。

您需要执行以下操作:

$query = "SELECT item_name from items WHERE item_id IN('s001','a012')";
$result = mysql_query($query, $conn) or die (mysql_error());
if (mysql_num_rows($result) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}
while ($row = mysql_fetch_assoc($result)) {
    echo $row["item_name"];
}
于 2009-02-13T04:42:30.087 回答
0

我猜您的 ID 字段必须设置为自动递增。我曾经遇到过问题,我将自动增量更改为 int。在 IN 字段中,如果您传递参数以匹配自动增量变量,您只返回第一个参数,其余的会产生错误。

于 2011-08-23T18:17:22.553 回答
0

您还可以使用 mysql_num_rows 函数告诉您查询检索了多少行,然后使用该结果来增加 for 循环。一个例子。

$num_rows=mysql_num_rows($query_results);
for ($i=0; $i <$num_rows ; $i++) { 
    $query_array[]=mysql_fetch_assoc($query_results);
}
于 2012-07-12T15:21:19.210 回答
0

用于mysql_fetch_assoc获取查询并将查询中的值分配mysql_fetch_assoc到数组中。就那么简单

$i=0;
$fullArray = array();

$query = mysql_query("SELECT name FROM users WHERE id='111' OR id='112' OR id='113' ")or die(mysql_error());

while($row = mysql_fetch_assoc($query)){
    foreach ($row as $value) {
        $fullArray[$i] = $value;
    }
    $i++;
}

var_dump($fullArray); 

echo $fullArray[0]."<br/>".$fullArray[1]."<br/>".$fullArray[2];`
于 2012-08-15T22:45:37.013 回答